Files
kengee-data-screen/src/views/AppMultipleStoreBoard.vue
2024-07-07 11:27:52 +08:00

29 lines
639 B
Vue

<script>
import AppMultipleStoreBoardFilter from "@/views/AppMultipleStoreBoardFilter.vue";
import AppStoresTable from "@/views/AppStoresTable.vue";
import AppNavbar from "@/views/AppNavbar.vue";
export default {
name: "AppMultipleStoreBoard",
components: {AppNavbar, AppStoresTable, AppMultipleStoreBoardFilter},
label: "多店看板"
}
</script>
<template>
<section class="AppMultipleStoreBoard">
<app-navbar/>
<app-multiple-store-board-filter/>
<app-stores-table class="fill"/>
</section>
</template>
<style scoped>
.AppMultipleStoreBoard {
width: 100%;
display: flex;
flex-direction: column;
}
</style>