先看一个警告
[Vue warn]: Invalid default value for prop "content": Props with type Object/Array must use a factory function to return the default value.
// 错误写法1: 会输出undefined且抛出上面的警告
default: [] 或 default: {}
// 错误写法2:会输出undefined
default: () => [] 或 default: () => {}
// 正确写法:
default: () => ([]) 或 default: () => ({})
//或者
default() {
return {} // []
}