mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 01:17:23 +08:00
chore: update
This commit is contained in:
parent
34ed020328
commit
cd8f5137f7
@ -147,7 +147,8 @@ function setFalse(Doms): any {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** 页宽 */
|
/** 页宽 */
|
||||||
const stretchTypeOptions: Array<OptionsType> = [
|
const stretchTypeOptions = computed<Array<OptionsType>>(() => {
|
||||||
|
return [
|
||||||
{
|
{
|
||||||
label: t("panel.pureStretchFixed"),
|
label: t("panel.pureStretchFixed"),
|
||||||
tip: t("panel.pureStretchFixedTip"),
|
tip: t("panel.pureStretchFixedTip"),
|
||||||
@ -159,6 +160,7 @@ const stretchTypeOptions: Array<OptionsType> = [
|
|||||||
value: "custom"
|
value: "custom"
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
});
|
||||||
|
|
||||||
const setStretch = value => {
|
const setStretch = value => {
|
||||||
settings.stretch = value;
|
settings.stretch = value;
|
||||||
@ -219,7 +221,8 @@ const themeOptions = computed<Array<OptionsType>>(() => {
|
|||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
const markOptions: Array<OptionsType> = [
|
const markOptions = computed<Array<OptionsType>>(() => {
|
||||||
|
return [
|
||||||
{
|
{
|
||||||
label: t("panel.pureTagsStyleSmart"),
|
label: t("panel.pureTagsStyleSmart"),
|
||||||
tip: t("panel.pureTagsStyleSmartTip"),
|
tip: t("panel.pureTagsStyleSmartTip"),
|
||||||
@ -231,6 +234,7 @@ const markOptions: Array<OptionsType> = [
|
|||||||
value: "card"
|
value: "card"
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
});
|
||||||
|
|
||||||
/** 设置导航模式 */
|
/** 设置导航模式 */
|
||||||
function setLayoutModel(layout: string) {
|
function setLayoutModel(layout: string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user