Files
FE_CPONE/test/vuex/one-process-resultverification/components/oneProcessRvDialogVer.vue
2026-04-27 10:13:31 +07:00

47 lines
949 B
Vue

<template>
<div class="text-xs-center">
<v-dialog
v-model="dialog"
width="500"
>
<v-card>
<v-card-text>
</v-card-text>
<v-divider></v-divider>
<v-card-actions>
<v-btn color="primary" flat @click="dialog = !dialog">Tutup</v-btn>
<v-spacer></v-spacer>
<v-btn
color="primary"
flat
@click="dialog = false"
>
Simpan
</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</div>
</template>
<script>
module.exports = {
data () {
return {
}
},
computed : {
dialog : {
get () { return this.$store.state.re_verification.dialog_verification },
set (v) { this.$store.commit("re_verification/update_dialog_verification", v) }
}
}
}
</script>