add quick menu, header table
This commit is contained in:
42
status-patient/components/main.vue
Normal file
42
status-patient/components/main.vue
Normal file
@@ -0,0 +1,42 @@
|
||||
<template>
|
||||
<v-app id="inspire">
|
||||
<one-navbar></one-navbar>
|
||||
<v-main>
|
||||
<quick-menu></quick-menu>
|
||||
<div class="pa-5 bg-primary-lighten mx-2 rounded-xl" style="height: 100%;">
|
||||
<one-filter></one-filter>
|
||||
<one-content></one-content>
|
||||
</div>
|
||||
</v-main>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script type="module">
|
||||
import NavbarComponent from "../../globalcomponent/one-navbar.vue";
|
||||
import QuickMenu from "../../globalcomponent/quick-menu.vue";
|
||||
import Content from "./content.vue";
|
||||
import Filter from "./filter.vue";
|
||||
export default {
|
||||
name: "Status Pasien",
|
||||
components: {
|
||||
"one-navbar": NavbarComponent,
|
||||
"quick-menu": QuickMenu,
|
||||
"one-content": Content,
|
||||
"one-filter": Filter,
|
||||
},
|
||||
mounted() {
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
visible: false
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
},
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user