aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/components/LdModeRadio.vue
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/components/LdModeRadio.vue')
-rw-r--r--viewer/src/components/LdModeRadio.vue22
1 files changed, 22 insertions, 0 deletions
diff --git a/viewer/src/components/LdModeRadio.vue b/viewer/src/components/LdModeRadio.vue
new file mode 100644
index 0000000..614bf33
--- /dev/null
+++ b/viewer/src/components/LdModeRadio.vue
@@ -0,0 +1,22 @@
1<template>
2 <div class="flex">
3 <b-radio-button v-model="$uiStore.mode" native-value="navigation" type="is-green">
4 <fa-icon icon="folder" />
5 <span>{{$t('mode.navigation')}}</span>
6 </b-radio-button>
7 <b-radio-button v-model="$uiStore.mode" native-value="search" type="is-purple">
8 <fa-icon icon="search" />
9 <span>{{$t('mode.search')}}</span>
10 </b-radio-button>
11 </div>
12</template>
13
14<script lang="ts">
15import { Component, Vue } from "vue-property-decorator";
16
17@Component
18export default class LdModeRadio extends Vue {}
19</script>
20
21<style lang="scss">
22</style>