hungergames/src/main.js

24 lines
564 B
JavaScript
Raw Normal View History

2017-09-29 18:12: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 Vuetify from 'vuetify';
import 'vuetify/dist/vuetify.min.css';
2017-11-21 22:11:58 +01:00
import 'material-design-icons/iconfont/material-icons.css';
2017-09-29 18:12:00 +02:00
import App from './App';
import router from './router';
import store from './store';
Vue.config.productionTip = false;
Vue.use(Vuetify);
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
store,
template: '<App/>',
components: { App },
});