diff options
author | Zero~Informatique | 2020-01-31 09:17:57 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-01-31 09:27:06 +0100 |
commit | 170da2d55fec0359cbac780786383710b734eda7 (patch) | |
tree | eb6fe6f60e9b83a9e5886b504aa65521711fd4a3 /viewer/src/views/PanelTop.vue | |
parent | a7d459a2620fa9523dd7ce8c9de519133ad5b1b7 (diff) | |
download | ldgallery-170da2d55fec0359cbac780786383710b734eda7.tar.gz |
viewer: code cleaning, moved some views to components
Diffstat (limited to 'viewer/src/views/PanelTop.vue')
-rw-r--r-- | viewer/src/views/PanelTop.vue | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/viewer/src/views/PanelTop.vue b/viewer/src/views/PanelTop.vue index 3553789..60722cd 100644 --- a/viewer/src/views/PanelTop.vue +++ b/viewer/src/views/PanelTop.vue | |||
@@ -19,22 +19,15 @@ | |||
19 | 19 | ||
20 | <template> | 20 | <template> |
21 | <div class="flex"> | 21 | <div class="flex"> |
22 | <top-command /> | 22 | <ld-command /> |
23 | <top-breadcrumb /> | 23 | <ld-breadcrumb /> |
24 | </div> | 24 | </div> |
25 | </template> | 25 | </template> |
26 | 26 | ||
27 | <script lang="ts"> | 27 | <script lang="ts"> |
28 | import { Component, Vue } from "vue-property-decorator"; | 28 | import { Component, Vue } from "vue-property-decorator"; |
29 | import TopBreadcrumb from "./TopBreadcrumb.vue"; | ||
30 | import TopCommand from "./TopCommand.vue"; | ||
31 | 29 | ||
32 | @Component({ | 30 | @Component |
33 | components: { | ||
34 | TopCommand, | ||
35 | TopBreadcrumb, | ||
36 | }, | ||
37 | }) | ||
38 | export default class PanelTop extends Vue {} | 31 | export default class PanelTop extends Vue {} |
39 | </script> | 32 | </script> |
40 | 33 | ||