New Discussion

Notifications

You’re not receiving notifications from this thread.

What is a elegant way for embedding vue component into rails view template

0
Ruby

Hi,

I'm doing this way like as follow
in the "***.html.erb"

<div class="col-sm-12" data-behaviour="vue">
    <component-abc props-a="abc"></component-abc>
</div>

here I'm wondering if I should not vue component tag into the rails template or should I do this way?

<%= content_tag :div,
  id: "hello-vue",
  data: {
    message: "Hello!",
    name: "David"
  }.to_json do %>
<% end %> 

I'd be much appreciated if anyone share their experience or the better way to do this.
Thanks in advance for you

Join the discussion
Create an account Log in

Learning Ruby on Rails? Join our newsletter.

We won't send you spam. Unsubscribe at any time.