大提交一版
This commit is contained in:
28
src/views/AppMultipleStoreBoard.vue
Normal file
28
src/views/AppMultipleStoreBoard.vue
Normal file
@@ -0,0 +1,28 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user