项目概况

Vue常用语法

2026-01-291 min read未分类
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})