65 lines
1.1 KiB
Vue
65 lines
1.1 KiB
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import { useStyle } from 'primevue/usestyle';
|
|
|
|
const styles = `
|
|
.p-blockui-container {
|
|
position: relative;
|
|
}
|
|
|
|
.p-blockui {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.p-blockui.p-component-overlay {
|
|
position: absolute;
|
|
}
|
|
|
|
.p-blockui-document.p-component-overlay {
|
|
position: fixed;
|
|
}
|
|
`;
|
|
|
|
const classes = {
|
|
root: 'p-blockui-container'
|
|
};
|
|
|
|
const { load: loadStyle } = useStyle(styles, { name: 'blockui', manual: true });
|
|
|
|
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
|
|
}
|
|
},
|
|
css: {
|
|
classes,
|
|
loadStyle
|
|
},
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|