Refactor #3879 - For BlockUI

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-24 12:32:20 +03:00
parent 5f18c9b3b2
commit ee6f59fcf3
3 changed files with 53 additions and 1 deletions

View file

@ -1,14 +1,16 @@
<template>
<div ref="container" class="p-blockui-container" :aria-busy="isBlocked">
<div ref="container" class="p-blockui-container" :aria-busy="isBlocked" v-bind="ptm('root')">
<slot></slot>
</div>
</template>
<script>
import BaseComponent from 'primevue/basecomponent';
import { DomHandler, ZIndexUtils } from 'primevue/utils';
export default {
name: 'BlockUI',
extends: BaseComponent,
emits: ['block', 'unblock'],
props: {
blocked: {