17 rindas
501 B
JavaScript
17 rindas
501 B
JavaScript
// The Vue build version to load with the `import` command
|
|
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
import Vue from 'vue';
|
|
import App from './App';
|
|
import VueSocketio from 'vue-socket.io';
|
|
import Vuetify from 'vuetify';
|
|
|
|
Vue.config.productionTip = false;
|
|
Vue.use(Vuetify);
|
|
Vue.use(VueSocketio, location.toString());
|
|
//Vue.use(VueSocketio, 'localhost:3000 ');
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app',
|
|
components: { App },
|
|
template: '<App/>',
|
|
});
|