Files

19 lines
360 B
TypeScript
Raw Permalink Normal View History

2026-02-10 08:05:03 +08:00
/* eslint-disable */
/**
* PMC
* */
import type { TdPickerItemProps } from './type';
export default {
/** 格式化标签 */
format: {
type: Function,
},
/** 数据源 */
options: {
type: Array,
default: (): TdPickerItemProps['options'] => [],
},
};