Feature/SendtoFo
This commit is contained in:
34
send-to-fo/components/main.vue
Normal file
34
send-to-fo/components/main.vue
Normal file
@@ -0,0 +1,34 @@
|
||||
<template class="bg-primary-lighten">
|
||||
<v-app id="inspire">
|
||||
<one-navbar></one-navbar>
|
||||
<v-main class="bg-primary-lighten">
|
||||
<v-row class="ma-5">
|
||||
<v-col cols="12"><filter-fo></filter-fo></v-col>
|
||||
<v-col cols="4"><pasien-component></pasien-component></v-col>
|
||||
<v-col cols="8"><report-component></report-component></v-col>
|
||||
</v-row>
|
||||
</v-main>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script type="module">
|
||||
import FilterFo from "./filterfo.vue";
|
||||
import PasienComponent from "./pasien.vue";
|
||||
import ReportComponent from "./report.vue";
|
||||
import NavbarComponent from "../../globalcomponent/one-navbar.vue";
|
||||
export default {
|
||||
name: "component2",
|
||||
components: {
|
||||
"filter-fo": FilterFo,
|
||||
"one-navbar": NavbarComponent,
|
||||
"pasien-component": PasienComponent,
|
||||
"report-component": ReportComponent,
|
||||
},
|
||||
computed: {
|
||||
},
|
||||
methods: {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user