本文主要是介绍Vue3绑定props默认值问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
《Vue3绑定props默认值问题》使用Vue3的defineProps配合TypeScript的interface定义props类型,并通过withDefaults设置默认值,使组件能安全访问传入的...
前言
使用TS、vue3组织组件中传入props的通用方式
步骤
步骤1:使用 defihttp://www.chinasem.cnneProps 定义 Props
使用interface定义props中各项的类型:
// 组件List.vue // 定义 Props 类型和接口 interface ListItem { name: s编程tandroidring; time: string; content: { status: number; name: string; }[]; } // 使用 defineProps 定义 Props const props = defineProps<{ listData?: ListItem[]; // listData 属性为可选的 LOizUKjgSzVistItem 数组类型 }>();
步骤2:设置默认值
使用Vue3中的withDefaults定义props默认值
// 组件List.vue // 定义 Props 类型和接口 interface ListItem { name: string; time: string; content: { status: number; name: string; }[]; } // 使用 withDefaults 设置默认值 const props = withDefaults( defineProps<{ listData?: ListItem[]; // listData 属性为可选的 ListItem 数组类型 }>(), { lisphptData: () => [], // 设置 listData 的默认值为空数组 } );
之后组件中即可使用props.listData
来访问props中的值。
总结
这篇关于Vue3绑定props默认值问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!