release: update 5.7.0

This commit is contained in:
xiaoxian521
2024-06-07 09:31:37 +08:00
parent 0a57ad7920
commit 7640f97a36
18 changed files with 948 additions and 590 deletions

View File

@@ -230,6 +230,11 @@ const markOptions = computed<Array<OptionsType>>(() => {
label: "卡片",
tip: "卡片标签,高效浏览",
value: "card"
},
{
label: "谷歌",
tip: "谷歌风格,经典美观",
value: "chrome"
}
];
});
@@ -440,7 +445,7 @@ onUnmounted(() => removeMatchMedia);
<Segmented
resize
class="select-none"
:modelValue="markValue === 'smart' ? 0 : 1"
:modelValue="markValue === 'smart' ? 0 : markValue === 'card' ? 1 : 2"
:options="markOptions"
@change="onChange"
/>