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

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