如果要对props的数据进行指定类型, 基本类型可以直接使用类型约束,复杂类型可以使用PropType
进行约束
interface ItemInterface {
title: string
code: string
status: number
icon: string
}
const props = defineProps({
type: String,
userId: String,
currentItem: {
type: Object as PropType<ItemInterface>, // 使用 PropType 指定类型
default: () => ({})
}
})
来自gpt的解释:
解析说明:
-
ItemInterface 接口: 定义了 currentItem 属性期望的对象结构,包括 title, code, status, icon 四个字段,每个字段的类型都是 string 或 number。
-
currentItem 的定义:
使用 PropType
Object as PropType
- 默认值:
default: () => ({}) 指定 currentItem 的默认值为空对象,这符合 Vue 3 中 props 的默认值设定方式。
为什么这样做是好的选择?
-
类型安全: 使用 PropType
可以确保在组件使用 currentItem 属性时,只接受符合 ItemInterface 接口定义的对象。 -
清晰明了: 在 Vue 3 组件中,使用 PropType 显式指定 props 的类型,使得组件的使用者和维护者能够清晰地了解每个 prop 的预期类型和结构。
-
可读性: 增强了代码的可读性和可维护性,特别是在较大的项目中,能够帮助团队成员更快速地理解和使用组件。
以上。
标签:ItemInterface,PropType,vue3,ts,指定,props,类型,currentItem From: https://www.cnblogs.com/hjk1124/p/18294034