Bootstrap

Cannot read properties of undefined (reading ‘push‘)

数组找不到push方法

错误的

const defaultKeys = ref<number[]>();
  • 此语句创建了一个 ref 对象,并将默认值设置为 undefined。

正确写法
 

const defaultKeys = ref<number[]>([]);
  • 此语句创建了一个 ref 对象,并将默认值设置为一个空数组 []
;