RailsのViewで使っているSlimからVueにスムーズに書き換えるためのチートシート
.each do |element| elements
↓
template(v-for="element in elements")
if xxx == false
↓
template(v-if="xxx == false")
.child_table.name.present? elements
↓
.to_json(include: :child_table) elements
or
.to_json(include: { child_table: {include: :grand_child_table}}) elements
上記のように子供or孫のテーブル情報まで返すようにして
.child_table.name elements
で参照