JSFiddle - React, Tailwind, and code Playground
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)