yxl
2025-01-20 7c24257d14c8a773aef0586c0195642c15246038
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Vue from 'vue'
import App from './App.vue'
 
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import JwChat from '@/components'
import store from './store';
// 引入路由
 
import router from './router'
 
Vue.use(ElementUI)
 
// import JwChat from '../lib/JwChat.common';
// import '../lib/JwChat.css';
Vue.use(JwChat)
 
Vue.config.productionTip = false
 
new Vue({
  store,
  router,
  render: h => h(App),
}).$mount('#app')