feat:vue-element-admin升级改造vue3

This commit is contained in:
有来技术
2021-11-21 23:38:54 +08:00
parent 0091a5fab2
commit fe8a7e2c31
25 changed files with 1463 additions and 164 deletions

20
src/settings.ts Normal file
View File

@@ -0,0 +1,20 @@
interface DefaultSettings {
title: string,
showSettings: boolean,
tagsView: boolean,
fixedHeader: boolean,
sidebarLogo: boolean,
errorLog: string
}
const defaultSettings: DefaultSettings = {
title: 'vue3-element-admin',
showSettings: false,
tagsView: true,
fixedHeader: false,
sidebarLogo: false,
errorLog: 'production'
}
export default defaultSettings