Template - Rails 7 view component Projet d'origine: Veracyte Stack: - Rails 7 - Ruby 3.1 - ViewComponent configuré comme on veut - Tailwind
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
rails_view_component/app/components/demo/component.html.erb

6 lines
346 B

<div data-controller="demo--component">
<h2 class="text-lg font-bold mb-3"><%= t(title) %> </h2>
<p class=""> <%= t(text) %> </p>
<p data-demo--component-target="hello" class="pl-3 font-italic text-yellow-500"></p>
<button type="button" data-action="click->demo--component#sayHi" class="border rounded p-1 mt-3"> Say Hi !</button>
</div>