mirror of
https://gitee.com/lijingbo-2021/open-anylink-web.git
synced 2026-05-17 12:48:02 +00:00
20 lines
403 B
JavaScript
20 lines
403 B
JavaScript
import { createApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import pinia from './stores/index'
|
|
import '@/assets/main.scss'
|
|
import 'element-plus/dist/index.css'
|
|
import ElementPlus from 'element-plus'
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(pinia)
|
|
app.use(router)
|
|
app.use(ElementPlus, {
|
|
locale: zhCn
|
|
})
|
|
|
|
app.mount('#app')
|