28 lines
578 B
Vue
28 lines
578 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import ConfirmDialogStyle from 'primevue/confirmdialog/style';
|
|
|
|
export default {
|
|
name: 'BaseConfirmDialog',
|
|
extends: BaseComponent,
|
|
props: {
|
|
group: String,
|
|
breakpoints: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
draggable: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
style: ConfirmDialogStyle,
|
|
provide() {
|
|
return {
|
|
$pcConfirmDialog: this,
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|