UNPKG

vuux

Version:

Vue3 Nuxt3 Nuxt4 组件库

13 lines (12 loc) 308 B
import { Emit, Props } from '../types'; /** * hook * * @param props 组件属性 * @param emit 组件事件 */ export declare const useAlert: (props: Props, emit: Emit) => { isShow: import('vue').Ref<boolean, boolean>; iconSize: import('vue').ComputedRef<number>; hanleClose: () => void; };