2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
2022-01-04 13:16:41 +01:00
|
|
|
<div class="_formRoot">
|
2022-06-30 03:53:40 +02:00
|
|
|
<FormSwitch v-model="navWindow">{{ i18n.ts.defaultNavigationBehaviour }}: {{ i18n.ts.openInWindow }}</FormSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-05-05 15:51:29 +02:00
|
|
|
<FormSwitch v-model="alwaysShowMainColumn" class="_formBlock">{{ i18n.ts._deck.alwaysShowMainColumn }}</FormSwitch>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-04 13:16:41 +01:00
|
|
|
<FormRadios v-model="columnAlign" class="_formBlock">
|
2022-05-05 15:51:29 +02:00
|
|
|
<template #label>{{ i18n.ts._deck.columnAlign }}</template>
|
|
|
|
<option value="left">{{ i18n.ts.left }}</option>
|
|
|
|
<option value="center">{{ i18n.ts.center }}</option>
|
2020-12-26 14:41:00 +01:00
|
|
|
</FormRadios>
|
2022-01-04 13:16:41 +01:00
|
|
|
</div>
|
2020-11-25 13:31:34 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-05 15:51:29 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { computed, watch } from 'vue';
|
2022-01-04 13:16:41 +01:00
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
|
|
|
import FormInput from '@/components/form/input.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { deckStore } from '@/ui/deck/deck-store';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2022-05-05 15:51:29 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-05-05 15:51:29 +02:00
|
|
|
const navWindow = computed(deckStore.makeGetterSetter('navWindow'));
|
|
|
|
const alwaysShowMainColumn = computed(deckStore.makeGetterSetter('alwaysShowMainColumn'));
|
|
|
|
const columnAlign = computed(deckStore.makeGetterSetter('columnAlign'));
|
2020-12-27 13:16:51 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.deck,
|
2023-03-11 22:01:04 +01:00
|
|
|
icon: 'ph-layout ph-bold ph-lg',
|
2020-11-25 13:31:34 +01:00
|
|
|
});
|
|
|
|
</script>
|