UNPKG

wot-design-uni

Version:

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

13 lines (10 loc) 304 B
import type { ExtractPropTypes } from 'vue' import { baseProps, makeStringProp } from '../common/props' export const dividerProps = { ...baseProps, /** * 自定义颜色,所有颜色的写法 */ color: makeStringProp('') } export type DividerProps = ExtractPropTypes<typeof dividerProps>