2020-11-25 06:31:34 -06:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
|
|
|
|
<section class="_card _vMargin">
|
|
|
|
<div class="_title"><Fa :icon="faColumns"/> </div>
|
|
|
|
<div class="_content">
|
2020-12-25 19:47:36 -06:00
|
|
|
<div>{{ $ts.defaultNavigationBehaviour }}</div>
|
|
|
|
<MkSwitch v-model:value="navWindow">{{ $ts.openInWindow }}</MkSwitch>
|
2020-11-25 06:31:34 -06:00
|
|
|
</div>
|
|
|
|
<div class="_content">
|
2020-12-18 19:55:52 -06:00
|
|
|
<MkSwitch v-model:value="alwaysShowMainColumn">
|
2020-12-25 19:47:36 -06:00
|
|
|
{{ $ts._deck.alwaysShowMainColumn }}
|
2020-11-25 06:31:34 -06:00
|
|
|
</MkSwitch>
|
|
|
|
</div>
|
|
|
|
<div class="_content">
|
2020-12-25 19:47:36 -06:00
|
|
|
<div>{{ $ts._deck.columnAlign }}</div>
|
|
|
|
<MkRadio v-model="columnAlign" value="left">{{ $ts.left }}</MkRadio>
|
|
|
|
<MkRadio v-model="columnAlign" value="center">{{ $ts.center }}</MkRadio>
|
2020-11-25 06:31:34 -06:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faImage, faCog, faColumns } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkSwitch from '@/components/ui/switch.vue';
|
|
|
|
import MkSelect from '@/components/ui/select.vue';
|
|
|
|
import MkRadio from '@/components/ui/radio.vue';
|
|
|
|
import MkRadios from '@/components/ui/radios.vue';
|
|
|
|
import MkRange from '@/components/ui/range.vue';
|
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormSelect from '@/components/form/select.vue';
|
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
|
|
|
import FormBase from '@/components/form/base.vue';
|
|
|
|
import FormGroup from '@/components/form/group.vue';
|
2020-12-18 19:55:52 -06:00
|
|
|
import { deckStore } from '@/ui/deck/deck-store';
|
2020-11-25 06:31:34 -06:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkSwitch,
|
|
|
|
MkSelect,
|
|
|
|
MkRadio,
|
|
|
|
MkRadios,
|
|
|
|
MkRange,
|
|
|
|
FormSwitch,
|
|
|
|
FormSelect,
|
|
|
|
FormRadios,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
INFO: {
|
2020-12-25 19:47:36 -06:00
|
|
|
title: this.$ts.deck,
|
2020-11-25 06:31:34 -06:00
|
|
|
icon: faColumns
|
|
|
|
},
|
|
|
|
faImage, faCog,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2020-12-18 19:55:52 -06:00
|
|
|
navWindow: deckStore.makeGetterSetter('navWindow'),
|
|
|
|
alwaysShowMainColumn: deckStore.makeGetterSetter('alwaysShowMainColumn'),
|
|
|
|
columnAlign: deckStore.makeGetterSetter('columnAlign'),
|
2020-11-25 06:31:34 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.$emit('info', this.INFO);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|