diff options
author | Zero~Informatique | 2021-07-02 22:53:16 +0200 |
---|---|---|
committer | Zero~Informatique | 2021-07-03 00:05:22 +0200 |
commit | 9165cc1efcf7791f78b61b2c51a9de651b1b09aa (patch) | |
tree | 111cfdc74ddaf7b19ff27508f16ab84694b27670 /viewer/src/views/MainLayout.vue | |
parent | 08ac32103fb5f8cca1861267dfd07a7c0d2faf62 (diff) | |
download | ldgallery-9165cc1efcf7791f78b61b2c51a9de651b1b09aa.tar.gz |
viewer: types normalization - gallery.d.ts
GitHub: closes #301
Diffstat (limited to 'viewer/src/views/MainLayout.vue')
-rw-r--r-- | viewer/src/views/MainLayout.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue index 9cd518b..edca4bf 100644 --- a/viewer/src/views/MainLayout.vue +++ b/viewer/src/views/MainLayout.vue | |||
@@ -29,10 +29,10 @@ | |||
29 | </template> | 29 | </template> |
30 | 30 | ||
31 | <script lang="ts"> | 31 | <script lang="ts"> |
32 | import { Component, Vue, Ref, Watch } from "vue-property-decorator"; | 32 | import { Component, Ref, Vue, Watch } from "vue-property-decorator"; |
33 | import { Route } from "vue-router"; | ||
33 | import PanelLeft from "./PanelLeft.vue"; | 34 | import PanelLeft from "./PanelLeft.vue"; |
34 | import PanelTop from "./PanelTop.vue"; | 35 | import PanelTop from "./PanelTop.vue"; |
35 | import { Route } from "vue-router"; | ||
36 | 36 | ||
37 | @Component({ | 37 | @Component({ |
38 | components: { PanelLeft, PanelTop }, | 38 | components: { PanelLeft, PanelTop }, |