JSFiddle - React, Tailwind, and code Playground
by ksoncan34
HTML
<html>
<head>
<title>Test VUE</title>
</head>
<body>
<h1>
Test Vue
</h1>
<div id="vue"/>
</body>
</html>
JavaScript
var app = new Vue({
data: {
message: 'Hello Vue!'
},
template: '<div>{{message}}</div>'
});
debugger;