Vue常用语法
vue
泛型Props
这种方式更加简单
ts
1import type {FormSearchProps} from '@/noui/v-ui-pro'
2const props = withDefaults(defineProps<FormSearchProps>(), {
3 layout: 'vertical',
4 header: true,
5 modelValue: {},
6 loading: false,
7 formItemAttributes: [
8 {
9 label: '文本类型',
10 field: 'orderTime',
11 defaultValue: 'nb',
12 type: 'input',
13 attrs: {
14 placeholder: '绑定属性',
15 }
16 }]
17})