You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
projectx/src/main.js

16 lines
309 B

4 years ago
import Vue from 'vue'
4 years ago
import './plugins/axios'
import JanusPlugin from "@/plugins/janus"
4 years ago
import App from './App.vue'
4 years ago
import vuetify from './plugins/vuetify';
import router from './router'
4 years ago
4 years ago
Vue.config.productionTip = false
4 years ago
new Vue({
4 years ago
vuetify,
JanusPlugin,
router,
4 years ago
render: h => h(App)
4 years ago
}).$mount('#app')