【自用】完美解决:Invalid prop: xxx,Expected Boolean, got String with value “true“.

一、错误分析

报错如图。
原因是,vue中对于属性值是data中数据或者是boolean类型的时候,属性前面需要加上冒号

在这里插入图片描述

二、解决办法

1.错误写法:

<el-table-column reserve-selection=true type="selection" width="55px"/>

2.正确写法(多加个冒号即可):

<el-table-column :reserve-selection=true type="selection" width="55px"/>

3.报错消失了

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_43768851/article/details/128120727