来源:https://blog.csdn.net/qq_30497875/article/details/114014041
PropType的理解
<script lang='ts'>
import {defineComponent, PropType} from 'vue'
export interface ColumnProps{
id: string;
title: string;
avatar: string;
description: string;
}
export default defineComponent({
name:'ColumnList',
props:{
list:{
type:Array as PropType<ColumnProps[]>,
required:true
}
}
})
</script>
用一句简单的话来说,就是为了类型推论,让我们在使用属性的时候获取更丰富的类型提示,比如在这里我们定义了一个属性list;使用vue默认的Array,只能确定它是一个数组类型,不能确定数组里面的每一项到底是什么样子的 你在setup中,看props.list就是一个any数组,但是如果使用propType<ColumnProps[]>这个时候,props.list就变成一个ColumnProps的数组,你使用它的时候不论在 ts 中还是模版中都能获得类型的推断和自动补全等等。
网友评论