47 lines
949 B
Vue
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>
|