add ui specimen collection hardcode

This commit is contained in:
2024-08-15 17:07:59 +07:00
parent 281993b01e
commit 13e203fb57
5 changed files with 443 additions and 8 deletions

View File

@@ -3,7 +3,15 @@
<one-navbar></one-navbar>
<v-main>
<div class="pa-5 bg-primary-lighten ml-2 rounded-xl h-100">
<one-filter></one-filter>
<v-row>
<v-col cols="12" md="6" sm="12" xs="12" class="mt-5">
<one-left></one-left>
</v-col>
<v-col cols="12" md="6" sm="12" xs="12" class="mt-5">
<one-right></one-right>
</v-col>
</v-row>
</div>
</v-main>
</v-app>
@@ -11,20 +19,28 @@
<script type="module">
import NavbarComponent from "../../globalcomponent/one-navbar.vue";
import FilterComponent from "./filter.vue";
import LeftComponent from "./left.vue";
import RightComponent from "./right.vue";
export default {
name: "x-page"
name: "x-page",
components: {
"one-navbar": NavbarComponent,
}
"one-filter": FilterComponent,
"one-left": LeftComponent,
"one-right": RightComponent,
},
mounted() {},
data() {
return {
visible: false,
}
};
},
computed: {
},
computed: {},
methods: {
},
};
</script>