11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/lib/theme-chalk/index.css'
|
|
import '/@/theme/index.scss'
|
|
import locale from 'element-plus/lib/locale/lang/zh-cn'
|
|
|
|
createApp(App).use(ElementPlus, { size: 'small', locale }).mount('#app')
|
|
|