45
chenyc
2022-07-20 88b74f25d221cfd05878341bdce5b151de37be59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import router from './router/index'
import { createPinia } from 'pinia'
import App from './App.vue'
import './samples/node-api'
 
createApp(App)
  .use(createPinia())
  .use(ElementPlus)
  .use(router)
  .mount('#app')
  .$nextTick(window.removeLoading)