UNPKG

uview-plus

Version:

零云®uview-plus已兼容vue3支持多语言,120+全面的组件和便捷的工具会让您信手拈来。近期新增拖动排序、条码、图片裁剪、下拉刷新、虚拟列表、签名、Markdown等。

40 lines (36 loc) 776 B
import { AllowedComponentProps, VNodeProps } from './_common' declare interface IndexListProps { /** * 右边锚点状态非激活时的颜色 * @default "#606266" */ inactiveColor?: string /** * 右边锚点状态激活时的颜色 * @default "#5677fc" */ activeColor?: string /** * 索引字符列表,数组 * @default "A-Z" */ indexList?: (string | number)[] /** * 是否开启锚点自动吸顶 * @default true */ sticky?: boolean /** * 自定义导航栏的高度,单位默认px * @default 0 */ customNavHeight?: string | number } declare interface _IndexList { new (): { $props: AllowedComponentProps & VNodeProps & IndexListProps } } export declare const IndexList: _IndexList