34 lines
663 B
Vue
34 lines
663 B
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import BlockUIStyle from 'primevue/blockui/style';
|
|
|
|
export default {
|
|
name: 'BaseBlockUI',
|
|
extends: BaseComponent,
|
|
props: {
|
|
blocked: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
fullScreen: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
baseZIndex: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
autoZIndex: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
style: BlockUIStyle,
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|