aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/PanelLeft.vue
diff options
context:
space:
mode:
authorZero~Informatique2019-12-22 03:50:40 +0100
committerZero~Informatique2019-12-22 03:50:40 +0100
commite34be1261d9219e5b2b92ebe271f609f11d55f63 (patch)
treef9bb705d0b7ec819b48ddfd5a318642ca239aff3 /viewer/src/views/PanelLeft.vue
parentc2b4c5d144db17ebf2dc9de32ba25cc836831ae2 (diff)
downloadldgallery-e34be1261d9219e5b2b92ebe271f609f11d55f63.tar.gz
vewer: Tags indexing and search input
Diffstat (limited to 'viewer/src/views/PanelLeft.vue')
-rw-r--r--viewer/src/views/PanelLeft.vue20
1 files changed, 20 insertions, 0 deletions
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue
new file mode 100644
index 0000000..4b5bce0
--- /dev/null
+++ b/viewer/src/views/PanelLeft.vue
@@ -0,0 +1,20 @@
1<template>
2 <div>
3 <b-field :label="$t('panelLeft.title')">
4 <ld-tag-input />
5 </b-field>
6 </div>
7</template>
8
9<script lang="ts">
10import { Component, Vue, Prop } from "vue-property-decorator";
11
12@Component
13export default class PanelLeft extends Vue {}
14</script>
15
16<style lang="scss">
17.label {
18 color: white;
19}
20</style>