vue3报这种类型的错误,一般定位在Props定义父组件传递给子组件的属性或方法时,写错导致出现此报错:
TypeError: Right-hand side of 'instanceof' is not callable
如下两种写法都会导致报错:
props: {
name: "",
age: {
type: Number | String,
default: 18,
}
}
vue3报这种类型的错误,一般定位在Props定义父组件传递给子组件的属性或方法时,写错导致出现此报错:
TypeError: Right-hand side of 'instanceof' is not callable
如下两种写法都会导致报错:
props: {
name: "",
age: {
type: Number | String,
default: 18,
}
}