有时候传参不传的话,值会是undefined
props:{
params: {
type: Object,
default: () => {}
}
}
改成这样就行,() => {} 会被当成空函数
props:{
params: {
type: Object,
default: () => { return {} }
}
}
有时候传参不传的话,值会是undefined
props:{
params: {
type: Object,
default: () => {}
}
}
改成这样就行,() => {} 会被当成空函数
props:{
params: {
type: Object,
default: () => { return {} }
}
}