我这样自定义了一个类型,在props内传入值后打印的arr
为typeof 输出为boject类型,但是控制台打印后是数组,在view里也不能使用。
问:uniapp-x 子组件的props如何传入一个对象数组
<script lang='uts'>
type SwiperViewItem = {
type : string,
name : string,
preload : boolean,
}
export default {
props: {
arr: {
type: Array as PropType<SwiperViewItem[]>,
default: () : Array<SwiperViewItem> => {
return []
}
},
},
}
</script>
1***@qq.com (作者)
会了
2024-12-31 18:48