suerprisePlus
2024-06-05 3ed05b2ea37c4da7b0b4923991deb1d27f415027
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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';
Vue.use(ElementUI)
 
// import JwChat from '../lib/JwChat.common';
// import '../lib/JwChat.css';
Vue.use(JwChat)
 
Vue.config.productionTip = false
 
new Vue({
  store,
  render: h => h(App),
}).$mount('#app')