2020-11-25 21:31:34 +09:00
|
|
|
<template>
|
2023-01-06 13:40:17 +09:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 14:59:54 +09:00
|
|
|
<MkSwitch v-model="navWindow">{{ i18n.ts.defaultNavigationBehaviour }}: {{ i18n.ts.openInWindow }}</MkSwitch>
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-01-07 14:59:54 +09:00
|
|
|
<MkSwitch v-model="alwaysShowMainColumn">{{ i18n.ts._deck.alwaysShowMainColumn }}</MkSwitch>
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-01-07 15:09:46 +09:00
|
|
|
<MkRadios v-model="columnAlign">
|
2022-05-05 22:51:29 +09:00
|
|
|
<template #label>{{ i18n.ts._deck.columnAlign }}</template>
|
|
|
|
<option value="left">{{ i18n.ts.left }}</option>
|
|
|
|
<option value="center">{{ i18n.ts.center }}</option>
|
2023-01-07 15:09:46 +09:00
|
|
|
</MkRadios>
|
2022-01-04 21:16:41 +09:00
|
|
|
</div>
|
2020-11-25 21:31:34 +09:00
|
|
|
</template>
|
|
|
|
|
2022-05-05 22:51:29 +09:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 23:09:41 +09:00
|
|
|
import { computed } from 'vue';
|
2023-01-07 14:59:54 +09:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-01-07 15:09:46 +09:00
|
|
|
import MkRadios from '@/components/MkRadios.vue';
|
2021-11-12 02:02:25 +09:00
|
|
|
import { deckStore } from '@/ui/deck/deck-store';
|
2022-05-05 22:51:29 +09:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 17:38:49 +09:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2022-05-05 22:51:29 +09:00
|
|
|
const navWindow = computed(deckStore.makeGetterSetter('navWindow'));
|
|
|
|
const alwaysShowMainColumn = computed(deckStore.makeGetterSetter('alwaysShowMainColumn'));
|
|
|
|
const columnAlign = computed(deckStore.makeGetterSetter('columnAlign'));
|
2020-12-27 21:16:51 +09:00
|
|
|
|
2022-06-20 17:38:49 +09:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.deck,
|
2022-12-19 19:01:30 +09:00
|
|
|
icon: 'ti ti-columns',
|
2020-11-25 21:31:34 +09:00
|
|
|
});
|
|
|
|
</script>
|