46 lines
1.3 KiB
Vue
46 lines
1.3 KiB
Vue
<template>
|
|
<v-app id="inspire">
|
|
<one-navbar></one-navbar>
|
|
<v-main class="mt-3 mb-3 mx-2">
|
|
<div class="pa-4 bg-primary-lighten rounded-xl h-100">
|
|
<one-filter></one-filter>
|
|
<v-row no-gutters>
|
|
<v-col cols="12" md="6" sm="12" xs="12" class="mt-4 pr-2">
|
|
<one-left></one-left>
|
|
</v-col>
|
|
<v-col cols="12" md="6" sm="12" xs="12" class="mt-4 pl-2">
|
|
<one-right></one-right>
|
|
</v-col>
|
|
</v-row>
|
|
</div>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<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: "specimen collection",
|
|
components: {
|
|
"one-navbar": NavbarComponent,
|
|
"one-filter": FilterComponent,
|
|
"one-left": LeftComponent,
|
|
"one-right": RightComponent,
|
|
},
|
|
mounted() {},
|
|
data() {
|
|
return {
|
|
visible: false,
|
|
};
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
};
|
|
</script> |