remodel scan process and visualize external
This commit is contained in:
parent
9ef76a7c26
commit
ed947e5777
23 changed files with 338 additions and 29 deletions
|
@ -26,6 +26,9 @@
|
|||
<p v-else class="pt-4 border-b border-gray-300">{{ item.title }}</p>
|
||||
</div>
|
||||
</template>
|
||||
<template #bottomButtons>
|
||||
<ScanSidebarInfo v-if="inUse" />
|
||||
</template>
|
||||
</SidebarTemplate>
|
||||
</template>
|
||||
<template #main>
|
||||
|
@ -43,6 +46,8 @@ import SidebarTemplate from "@/templates/Sidebar.vue";
|
|||
import RoutingLink from "@/components/admin/RoutingLink.vue";
|
||||
import { useAbilityStore } from "@/stores/ability";
|
||||
import { RouterView } from "vue-router";
|
||||
import { useScannerStore } from "../../stores/admin/scanner";
|
||||
import ScanSidebarInfo from "../../components/scanner/ScanSidebarInfo.vue";
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
|
@ -54,6 +59,7 @@ export default defineComponent({
|
|||
"activeLink",
|
||||
"activeNavigation",
|
||||
]),
|
||||
...mapState(useScannerStore, ["inUse"]),
|
||||
},
|
||||
created() {
|
||||
useAbilityStore().$subscribe(() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue