JSFiddle - React, Tailwind, and code Playground
by Ironim Morar
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.2.0/vue.js"></script>
<div data-init="component-one">
<button >{{ message }}</button>
<timer></timer>
</div>
JavaScript
var timer1 = new Vue.component('timer',({
// el: '#countdown',
name: 'timer',
template: '<div id="countdown"><div>{{ minutes }}</div></div>',
data: function () {
return {
minutes: 25,
}
},
}));
var app = new Vue({
el: '[data-init="component-one"]',
data: {
message: 'Hello Vue!'
}
});