47 lines
1.3 KiB
Vue
47 lines
1.3 KiB
Vue
<template>
|
|
<v-card class="mt-2" flat>
|
|
<!-- <v-card-title primary-title class="pt-1 pb-1 pl-2 pr-2">
|
|
<div>
|
|
<h3 class="headline mb-0">Catatan Pasien</h3>
|
|
</div>
|
|
</v-card-title> -->
|
|
|
|
<v-card-text class="pt-1 pb-1 pl-2 pr-2">
|
|
<v-layout>
|
|
<v-flex xs12 pa-1>
|
|
<v-textarea
|
|
label="Catatan FO"
|
|
rows="3"
|
|
:value="n_clinical"
|
|
></v-textarea>
|
|
|
|
</v-flex>
|
|
|
|
<!-- <v-flex xs6 pa-1>
|
|
<v-textarea
|
|
label="Catatan Sampling"
|
|
rows="3"
|
|
:value="n_sampling"
|
|
></v-textarea>
|
|
|
|
</v-flex> -->
|
|
</v-layout>
|
|
</v-card-text>
|
|
|
|
</v-card>
|
|
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
n_clinical : 'Catatan Klinis Pasien\nCatatan Klinis Pasien\nCatatan Klinis Pasien',
|
|
n_sampling : 'Catatan Sampling Pasien\nCatatan Sampling Pasien\nCatatan Sampling Pasien'
|
|
}
|
|
}
|
|
}
|
|
</script> |