泛型Props
这种方式更加简单
ts
import type {FormSearchProps} from '@/noui/v-ui-pro'
const props = withDefaults(defineProps<FormSearchProps>(), {
layout: 'vertical',
header: true,
modelValue: {},
loading: false,
formItemAttributes: [
{
label: '文本类型',
field: 'orderTime',
defaultValue: 'nb',
type: 'input',
attrs: {
placeholder: '绑定属性',
}
}]
})
想法或问题?在 GitHub Issue 下方参与讨论
去评论