UNPKG

fant-mini-plus

Version:

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

10 lines (9 loc) 268 B
import { type InjectionKey, type Ref } from 'vue'; import type { Area } from './types'; /** * useArea 用到的key * * @internal */ export declare const areaDefaultKey: InjectionKey<Ref<boolean>>; export declare function useArea(selector?: string): Area;