food/src/main.js

22 lines
519 B
JavaScript
Raw Normal View History

2017-09-19 02:41:00 +02:00
// 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';
2017-09-20 04:11:40 +02:00
import Vuetify from 'vuetify';
import '../node_modules/vuetify/dist/vuetify.min.css';
2017-09-19 02:41:00 +02:00
import App from './App';
import router from './router';
2017-09-19 04:28:26 +02:00
import store from './store';
2017-09-19 02:41:00 +02:00
Vue.config.productionTip = false;
2017-09-20 04:11:40 +02:00
Vue.use(Vuetify);
2017-09-19 02:41:00 +02:00
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
2017-09-19 04:28:26 +02:00
store,
2017-09-19 02:41:00 +02:00
template: '<App/>',
components: { App },
});