JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

HTML

<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>

JavaScript

router = new VueRouter()
Vue.mixin({
	data(){
  	return {test:'woot'}
  }
})
new Vue({
  router:router
})
console.log(router.app.test)