vue的props接收数组和对象
```javascriptexport default {props: {//数组DepartmentDeptList: {type: Array,default: () => []},//对象CommentResultID: {type: Object,default () {return {}}},}}...
·
```javascript
export default {
props: {
//数组
DepartmentDeptList: {
type: Array,
default: () => []
},
//对象
CommentResultID: {
type: Object,
default () {
return {}
}
},
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)