UNPKG

fant-mini-plus

Version:

fant-mini-plus是一个基于Vue3和TypeScript的uni-app高效UI组件库,提供丰富的组件和样式,帮助开发者快速构建高质量的移动应用。

15 lines (14 loc) 449 B
import { type InjectionKey, type Ref } from 'vue'; import type { Toast, ToastOptions } from './types'; /** * useToast 用到的key * * @internal */ export declare const toastDefaultKey: InjectionKey<Ref<boolean>>; export declare const toastDefaultOptionKey: InjectionKey<Ref<ToastOptions>>; /** * 默认参数 */ export declare const defaultToastOptions: ToastOptions; export declare function useToast(selector?: string): Toast;