UNPKG

vuux

Version:

Vue3 Nuxt3 Nuxt4 组件库

17 lines (16 loc) 269 B
/** * Props */ export interface Props { type?: 'success' | 'warning' | 'info' | 'error'; title: string; description?: string; showIcon?: boolean; showClose?: boolean; } /** * 组件事件类型 */ export type Emit = { (e: 'close'): void; };