返回博客列表

Vue常用语法

2026-01-29
1 min read
vue

泛型Props 这种方式更加简单

泛型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: '绑定属性',
      }
    }]
})
返回博客列表
最后更新于 2026-01-29
想法或问题?在 GitHub Issue 下方参与讨论
去评论