JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

Vue

const hej = Vue.component('hej', {
	template:`<div>Hej!</div>`,
  data(){
		return {
    	woot:'woot'
    }
	}
})

console.dir(new hej())