2020-12-08 18:20:35 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
2020-12-13 22:46:41 +08:00
|
|
|
|
|
|
|
import ElementPlus from 'element-plus';
|
2020-12-16 00:38:52 +08:00
|
|
|
import '/@/assets/index.scss';
|
2020-12-08 18:20:35 +08:00
|
|
|
|
|
|
|
const app = createApp(App)
|
2020-12-13 22:46:41 +08:00
|
|
|
app.use(ElementPlus)
|
2020-12-08 18:20:35 +08:00
|
|
|
app.mount('#app')
|