|
@@ -18,6 +18,7 @@ const tabbarEnable = defineModel<boolean>('tabbarEnable');
|
|
|
const tabbarShowIcon = defineModel<boolean>('tabbarShowIcon');
|
|
|
const tabbarPersist = defineModel<boolean>('tabbarPersist');
|
|
|
const tabbarDraggable = defineModel<boolean>('tabbarDraggable');
|
|
|
+const tabbarWheelable = defineModel<boolean>('tabbarWheelable');
|
|
|
const tabbarStyleType = defineModel<string>('tabbarStyleType');
|
|
|
const tabbarShowMore = defineModel<boolean>('tabbarShowMore');
|
|
|
const tabbarShowMaximize = defineModel<boolean>('tabbarShowMaximize');
|
|
@@ -53,6 +54,13 @@ const styleItems = computed((): SelectOption[] => [
|
|
|
<SwitchItem v-model="tabbarDraggable" :disabled="!tabbarEnable">
|
|
|
{{ $t('preferences.tabbar.draggable') }}
|
|
|
</SwitchItem>
|
|
|
+ <SwitchItem
|
|
|
+ v-model="tabbarWheelable"
|
|
|
+ :disabled="!tabbarEnable"
|
|
|
+ :tip="$t('preferences.tabbar.wheelableTip')"
|
|
|
+ >
|
|
|
+ {{ $t('preferences.tabbar.wheelable') }}
|
|
|
+ </SwitchItem>
|
|
|
<SwitchItem v-model="tabbarShowIcon" :disabled="!tabbarEnable">
|
|
|
{{ $t('preferences.tabbar.icon') }}
|
|
|
</SwitchItem>
|