35 lines
699 B
Vue
35 lines
699 B
Vue
![]() |
<script>
|
||
![]() |
import BaseComponent from '@primevue/core/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 {
|
||
![]() |
$pcBlockUI: this,
|
||
![]() |
$parentInstance: this
|
||
|
};
|
||
![]() |
}
|
||
|
};
|
||
|
</script>
|