UNPKG

wot-design-uni

Version:

一个基于Vue3+TS开发的uni-app组件库,提供70+高质量组件,支持暗黑模式、国际化和自定义主题。

10 lines (7 loc) 277 B
import type { ExtractPropTypes } from 'vue' import { baseProps, makeRequiredProp } from '../common/props' export const indexAnchorProps = { ...baseProps, index: makeRequiredProp([String, Number]) } export type IndexAnchorProps = ExtractPropTypes<typeof indexAnchorProps>