UNPKG

@ray-js/smart-ui

Version:

轻量、可靠的智能小程序 UI 组件库

15 lines (14 loc) 332 B
import { SmartComponent } from '../base'; export interface SmartIndexAnchorProps { /** * 是否使用自定义内容的插槽 * * @default false */ useSlot?: boolean; /** * 索引字符 */ index?: string | number; } export type SmartIndexAnchor = SmartComponent<SmartIndexAnchorProps>;