67 lines
1.2 KiB
Vue
67 lines
1.2 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, { id: 'primevue_divider_style', manual: true });
|
||
|
|
||
|
export default {
|
||
|
name: 'BaseAvatar',
|
||
|
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
|
||
|
},
|
||
|
watch: {
|
||
|
isUnstyled: {
|
||
|
immediate: true,
|
||
|
handler(newValue) {
|
||
|
!newValue && loadStyle();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|