food/src/main.js

18 lines
414 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';
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;
/* 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 },
});