UNPKG

gtht-miniapp-sdk

Version:

gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

20 lines (19 loc) 474 B
import { type StyleValue } from 'vue'; export interface BackTopProps { rootStyle?: StyleValue; rootClass?: string; scrollTop?: number; visibleHeight?: number; right?: string; bottom?: string; } export declare const defaultBackTopProps: () => { scrollTop: number; visibleHeight: number; }; export interface BackTopSlots { default?(props: Record<string, never>): any; } export interface BackTopEmits { (e: 'click', event: any): void; }