42 lines
1.1 KiB
Vue
42 lines
1.1 KiB
Vue
<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> |