JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<div class="text" id="txt1">
Hello world
</div>
<div class="text" id="app">
{{message}}
</div>
<input type="button">
CSS
body {
font-family: arial, sans;
}
JavaScript
//for (i = 0; i < cars.length; i++) {
//alert( "it's a " + cars[i] + " >> i is " + i);
//};
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})