1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| import { computed } from 'vue';
| import { NOOP } from '@vue/shared';
| import '../../../utils/index.mjs';
| import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
| const CommonProps = buildProps({
| modelValue: {
| type: definePropType([Number, String, Array])
| },
| options: {
| type: definePropType(Array),
| default: () => []
| },
| props: {
| type: definePropType(Object),
| default: () => ({})
| }
| });
| const DefaultProps = {
| expandTrigger: "click",
| multiple: false,
| checkStrictly: false,
| emitPath: true,
| lazy: false,
| lazyLoad: NOOP,
| value: "value",
| label: "label",
| children: "children",
| leaf: "leaf",
| disabled: "disabled",
| hoverThreshold: 500
| };
| const useCascaderConfig = (props) => {
| return computed(() => ({
| ...DefaultProps,
| ...props.props
| }));
| };
|
| export { CommonProps, DefaultProps, useCascaderConfig };
| //# sourceMappingURL=config.mjs.map
|
|