JSFiddle - React, Tailwind, and code Playground
by octavioamu
HTML
<div id="app">
<h1>{{ title }}</h1>
</div>
<script src="https://unpkg.com/vue"></script>
JavaScript
new Vue({
el: '#app',
data: {
title: 'test',
ingredients: ['meat', 'fruit', 'carrot'],
persons: [
{name: 'Max', age: 27, color: 'red'},
{name: 'Anna', age: 'unknow', color: 'blue'}
]
}
});