//此处注引入
import {PropType} from 'vue'
interface Cells{
col:string,
row:string,
field:any
}
interface Subform {
cells:Array<Cells>
}
//定义
const Props = {
subform:{
type:Object as PropType<Sumbform>,
default:{}
},
}
vue3使用interface定义props
最新推荐文章于 2024-09-08 09:10:55 发布