JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app"></div>
JavaScript
var vm = new Vue({
template: `
<div>
<h1>Test</h1>
<button>{{ message }}</button>
</div>`,
data: {
message: 'Hello World!'
}
});
//vm.$mount('#app');
vm.$mount();
console.log(vm.$el);
document.getElementById('app').appendChild(vm.$el);