[Vuejs]-Vuejs Single File organization with Gulp

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??

Leave a comment