23 lines
545 B
TypeScript
23 lines
545 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import ElementPlus from 'element-plus'
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
|
import 'element-plus/dist/index.css'
|
|
import router from './router'
|
|
import App from './App.vue'
|
|
import './assets/styles.css'
|
|
import { permissionDirective } from './directives/permission'
|
|
|
|
const app = createApp(App)
|
|
const pinia = createPinia()
|
|
|
|
app.use(pinia)
|
|
app.use(router)
|
|
app.use(ElementPlus, {
|
|
locale: zhCn,
|
|
})
|
|
|
|
app.directive('permission', permissionDirective)
|
|
|
|
app.mount('#app')
|