real_time/software/UserInterfaceWeb/InterfaceUtilisateur/src/main.js
Sébastien DI MERCURIO 776a2f4ce6 initial commit
2018-08-27 16:39:49 +02:00

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/>',
});