diff options
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 | ||