Files
vue3-element-admin/src/settings.ts
郝先瑞 eab11687aa style: 代码统一风格格式化
Former-commit-id: 5d0a75e41127c57c663eb2617b1ce66d039f4c29
2022-05-08 13:06:12 +08:00

21 lines
402 B
TypeScript

interface DefaultSettings {
title: string;
showSettings: boolean;
tagsView: boolean;
fixedHeader: boolean;
sidebarLogo: boolean;
errorLog: string;
}
const defaultSettings: DefaultSettings = {
title: 'vue3-element-admin',
showSettings: true,
tagsView: true,
fixedHeader: false,
// 是否显示Logo
sidebarLogo: true,
errorLog: 'production'
};
export default defaultSettings;