wg-gen-web/ui/src/main.js

19 lines
456 B
JavaScript
Raw Permalink Normal View History

2020-01-30 06:45:49 +00:00
import Vue from 'vue'
import App from './App.vue'
import router from './router'
2020-04-28 11:11:49 +00:00
import store from './store'
2020-01-30 06:45:49 +00:00
import vuetify from './plugins/vuetify';
import './plugins/moment';
import './plugins/cidr'
2020-04-28 11:11:49 +00:00
import './plugins/axios'
2020-01-30 06:45:49 +00:00
2020-04-28 11:11:49 +00:00
// Don't warn about using the dev version of Vue in development.
Vue.config.productionTip = process.env.NODE_ENV === 'production'
2020-01-30 06:45:49 +00:00
new Vue({
router,
2020-04-28 11:11:49 +00:00
store,
2020-01-30 06:45:49 +00:00
vuetify,
render: function (h) { return h(App) }
}).$mount('#app')