JSFiddle - React, Tailwind, and code Playground

by Asif Sharif Shahid

HTML

<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
  <admin-post inline-template>
    <div class="row">
      <h1>{{ message }}</h1>
      
    </div>
  </admin-post>
</div>

JavaScript

Vue.component('admin-post', {
	data () {
		return {
			message: 'Hello World!'
		}
	},
	mounted() {
		console.log('mounted')
	},
	ready() {
		console.log('ready')
	},
	created() {
		console.log('created')
	}
});

new Vue({
    el: '#app'
});