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-17 18:59:01 +08:00
|
|
|
import 'element-plus/lib/theme-chalk/index.css';
|
2020-12-18 17:18:51 +08:00
|
|
|
import '/@/theme/index.scss';
|
2020-12-16 18:25:59 +08:00
|
|
|
|
2020-12-18 17:18:51 +08:00
|
|
|
createApp(App).use(ElementPlus, { size: 'small' }).mount('#app')
|
2020-12-08 18:20:35 +08:00
|
|
|
|