Files
FE_CPONE/test/vuex/one-fo-verification-simple-simple/components/oneFieldVerificationDialogDelivery.vue
2026-04-27 10:13:31 +07:00

51 lines
1.1 KiB
Vue

<template>
<v-dialog
v-model="dialog"
full-width
>
<v-card>
<v-card-title
class="headline grey lighten-2 pt-2 pb-2"
primary-title
>
Data Pasien X
</v-card-title>
<v-card-text class="pt-2 pb-2">
</v-card-text>
<v-divider></v-divider>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn
color="primary"
flat
@click="dialog = false"
>
Tutup
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
<style scoped>
</style>
<script>
module.exports = {
computed : {
dialog: {
get() {
return this.$store.state.patient.search_dialog_is_active;
},
set(val) {
this.$store.commit('patient/update_search_dialog_is_active',val);
}
}
}
}
</script>