19 lines
360 B
TypeScript
19 lines
360 B
TypeScript
|
|
/* eslint-disable */
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC
|
|||
|
|
* */
|
|||
|
|
|
|||
|
|
import type { TdPickerItemProps } from './type';
|
|||
|
|
export default {
|
|||
|
|
/** 格式化标签 */
|
|||
|
|
format: {
|
|||
|
|
type: Function,
|
|||
|
|
},
|
|||
|
|
/** 数据源 */
|
|||
|
|
options: {
|
|||
|
|
type: Array,
|
|||
|
|
default: (): TdPickerItemProps['options'] => [],
|
|||
|
|
},
|
|||
|
|
};
|