25 lines
789 B
Vue
25 lines
789 B
Vue
<script setup lang="ts">
|
|
/*Call Components*/
|
|
import Asesment from '@/pages/dokter/rawatjalan/cppt/HasilAsesment.vue';
|
|
import History from '~/pages/dokter/rawatjalan/cppt/HistoryAsesment.vue';
|
|
</script>
|
|
<template>
|
|
<v-card elevation="10" class="revenue-products" color="primary">
|
|
<div class="d-flex align-center justify-space-between">
|
|
<v-card-title class="text-h5">Catatan Pengembangan Pasien Rawat Jalan</v-card-title>
|
|
</div>
|
|
</v-card>
|
|
<v-row class="mt-3">
|
|
<v-col cols="7" lg="7">
|
|
<v-row>
|
|
<v-col><Asesment /></v-col>
|
|
</v-row>
|
|
</v-col>
|
|
<v-col cols="5" lg="5">
|
|
<v-row>
|
|
<v-col><History /></v-col>
|
|
</v-row>
|
|
</v-col>
|
|
</v-row>
|
|
</template>
|