Flatten nested repos
This commit is contained in:
37
test/vuex/pasien01/components/patientNotes.vue
Normal file
37
test/vuex/pasien01/components/patientNotes.vue
Normal file
@@ -0,0 +1,37 @@
|
||||
<template>
|
||||
<v-card class="mt-2 amber lighten-4">
|
||||
<v-layout>
|
||||
<v-flex xs6 pa-1>
|
||||
<v-textarea
|
||||
label="Catatan Klinis"
|
||||
rows="2"
|
||||
:value="n_clinical"
|
||||
></v-textarea>
|
||||
|
||||
</v-flex>
|
||||
|
||||
<v-flex xs6 pa-1>
|
||||
<v-textarea
|
||||
label="Catatan Sampling"
|
||||
rows="2"
|
||||
:value="n_sampling"
|
||||
></v-textarea>
|
||||
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</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>
|
||||
Reference in New Issue
Block a user