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

15 lines
315 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';
4 years ago
4 years ago
Vue.config.productionTip = false
console.log("janus is installed", Vue.$janus)
4 years ago
new Vue({
4 years ago
vuetify,
JanusPlugin,
render: h => h(App)
4 years ago
}).$mount('#app')