vue3(ts报错):类型“string | undefined”的参数不能赋给类型“string”的参数。不能将类型“undefined”分配给类型“string”。ts(2345)

报错原因 :在ts中对类型的要求很高需要转换为对应的类型

解决方法:使用强制转换 : String(报错的数据)

你可能感兴趣的:(vue.js)