UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

20 lines (16 loc) 352 B
import { VNode } from 'vue'; interface BlockUIProps { blocked?: boolean; fullScreen?: boolean; baseZIndex?: number; autoZIndex?: boolean; } declare class BlockUI { $props: BlockUIProps; $emit(eventName: 'block'): this; $emit(eventName: 'unblock'): this; $slots: { '': VNode[]; } } export default BlockUI;