UNPKG

@tplc/wot

Version:

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