wip: 迁移 v3-admin v3.1.3 版本代码

This commit is contained in:
pany
2022-04-21 18:20:39 +08:00
parent 9b4af24d41
commit 83979683b1
78 changed files with 3070 additions and 149 deletions

14
src/types/vue-proptery.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
import { ElMessage } from 'element-plus'
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
$message: ElMessage
}
}
declare module 'vue-router' {
interface RouteMeta {
roles?: string[]
activeMenu?: string
}
}