HTML & VueJS
Last updated
Was this helpful?
Was this helpful?
// the data model
{
"nameFirst": "Jim",
"nameLast": "Bob"
}// an HTML element
{
"html": "<h2>My name is {{model.nameFirst}}</h2>",
"styleClasses": "col-md-12",
"type": "html"
}// the data model
{
"items": [{
"name": "Racecar",
"qty": 2
},{
"name": "Wheels",
"qty": 30
}]
}<table class="table">
<thead>
<tr>
<th>Quan</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr v-for="line in model.items">
<td>{{line.qty}}</td>
<td>{{line.name}}</td>
</tr>
</tbody>
</table>>