基本上出现类似提示的时候就是在子组件接收参数的时候类型的不对,这里是父组件传的数组,然后接收的时候定义的不是数组。
columns: {
type: Array,
default: () => [],
},
2024-02-12 12:31:10
基本上出现类似提示的时候就是在子组件接收参数的时候类型的不对,这里是父组件传的数组,然后接收的时候定义的不是数组。
columns: {
type: Array,
default: () => [],
},