import type { PropType } from 'vue'; export const stringProp = (defaultVal: T) => ({ type: String as unknown as PropType, default: defaultVal }); export const stringOrObjectProp = (defaultVal: T) => ({ type: [String, Object] as PropType>, default: defaultVal }); export const baseProps = { /** * 自定义根节点样式 */ customStyle: stringOrObjectProp(''), /** * 自定义根节点样式类 */ customClass: stringProp('') };