volunteers/app/views/kanta/show.html.haml
2023-02-06 20:20:58 +02:00

18 lines
283 B
Plaintext

#app.flex.justify-center
.flex.flex-col
= @image.attributes
%a.underline{ '@click' => "hi"}
Back
:opal
class Clicker < VueR::Application
end
kanta = Clicker.new(bg: 'bg-cyan-200')
puts kanta.bg
kanta.bg = "bg-cyan"
puts kanta.bg
kanta.mount("#app")