Files
FE_CPONE/test/vuex/cpone-card-reader/components/patientNotes.vue
2026-04-27 10:13:31 +07:00

43 lines
994 B
Vue

<template>
<v-card flat>
<v-divider></v-divider>
<v-card-text class="pt-1 pb-1 pl-1 pr-0">
<v-layout>
<v-flex xs12 pa-1>
<v-textarea
hide-details
outline
placeholder=""
auto-grow
label="Catatan FO"
rows="1"
v-model="catatan_fo"
></v-textarea>
</v-flex>
</v-layout>
</v-card-text>
</v-card>
</template>
<script>
module.exports = {
components : {
},
computed : {
catatan_fo: {
get() {
return this.$store.state.order.catatan_fo
},
set(val) {
this.$store.commit('order/update_catatan_fo', val)
}
}
},
}
</script>