refactor: ♻️ 系统默认设置添加版本号,验证码字段名调整

Former-commit-id: 13254e70a1c51be035bd135599fcc4f1d1756b6b
This commit is contained in:
hxr
2023-11-05 10:52:36 +08:00
parent 35371481e3
commit b43bf70f21
3 changed files with 28 additions and 7 deletions

View File

@@ -3,9 +3,13 @@
*/
interface DefaultSettings {
/**
* 系统title
* 系统标题
*/
title: string;
/**
* 系统版本
*/
version: string;
/**
* 是否显示设置
*/
@@ -49,6 +53,7 @@ interface DefaultSettings {
const defaultSettings: DefaultSettings = {
title: "vue3-element-admin",
version: "v.2.6.5",
showSettings: true,
tagsView: true,
fixedHeader: false,