diff options
author | Zero~Informatique | 2021-07-02 22:59:56 +0200 |
---|---|---|
committer | Zero~Informatique | 2021-07-03 00:05:22 +0200 |
commit | 92cb34b719b481faf417760f307241e8f6d777a9 (patch) | |
tree | ba33af35b8bb07e6c1c19b84f6c3af37c791584c /viewer/src/views/PanelLeft.vue | |
parent | 9165cc1efcf7791f78b61b2c51a9de651b1b09aa (diff) | |
download | ldgallery-92cb34b719b481faf417760f307241e8f6d777a9.tar.gz |
viewer: types normalization - tag.d.ts
GitHub: closes #301
Diffstat (limited to 'viewer/src/views/PanelLeft.vue')
-rw-r--r-- | viewer/src/views/PanelLeft.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue index 5c42fa9..ea61865 100644 --- a/viewer/src/views/PanelLeft.vue +++ b/viewer/src/views/PanelLeft.vue | |||
@@ -48,13 +48,14 @@ | |||
48 | </template> | 48 | </template> |
49 | 49 | ||
50 | <script lang="ts"> | 50 | <script lang="ts"> |
51 | import { TagSearch } from "@/@types/tag"; | ||
51 | import Navigation from "@/services/navigation"; | 52 | import Navigation from "@/services/navigation"; |
52 | import { Component, Vue, Watch } from "vue-property-decorator"; | 53 | import { Component, Vue, Watch } from "vue-property-decorator"; |
53 | import { Dictionary, Route } from "vue-router/types/router"; | 54 | import { Dictionary, Route } from "vue-router/types/router"; |
54 | 55 | ||
55 | @Component | 56 | @Component |
56 | export default class PanelLeft extends Vue { | 57 | export default class PanelLeft extends Vue { |
57 | searchFilters: Tag.Search[] = []; | 58 | searchFilters: TagSearch[] = []; |
58 | infoOpen: boolean = true; | 59 | infoOpen: boolean = true; |
59 | 60 | ||
60 | mounted() { | 61 | mounted() { |