13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import { createApp } from 'vue'
|
|
import './style.css';
|
|
import 'element-plus/dist/index.css'
|
|
import ElementPlus from 'element-plus'
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
|
import App from './App.vue'
|
|
|
|
const app = createApp(App)
|
|
app.use(ElementPlus, {
|
|
locale: zhCn,
|
|
})
|
|
app.mount('#app')
|