0👍
var Vue = require('vue');
import Tournament from '../components/Tournament.vue';
new Vue({
el: 'body',
components: {template: Tournament},
ready() {
alert('Ready To Go');
}
});
Does that work??
- [Vuejs]-How to seperate Vue logic in a laravel app based on layout and page templates
- [Vuejs]-How to generate Canvas layer with on click button
Source:stackexchange.com