You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/vc-cascader/index.tsx

17 lines
332 B

// rc-cascader@3.4.2
import Cascader, {
internalCascaderProps as cascaderProps,
SHOW_PARENT,
SHOW_CHILD,
} from './Cascader';
export type {
CascaderProps,
FieldNames,
ShowSearchType,
DefaultOptionType,
BaseOptionType,
} from './Cascader';
export { cascaderProps, SHOW_PARENT, SHOW_CHILD };
export default Cascader;