一、bug开始了
html
<el-table-column prop="date" label="Date" width="180"/>
当使用上述代码进行html渲染时,发现没有正常渲染出想象中的视图,乱七八糟地。
二、bug解决
在IDE中报了如下警告:
Empty tag doesn't work in some browsers
大致意思是有些浏览器不支持这种缩写,应该把它展开,于是改为下面代码,成功运行
html
<el-table-column prop="date" label="Date" width="180"></el-table-column>
三、bug重现
上述代码摘自element-plus
官网的table
示例代码:
https://element-plus.org/zh-CN/component/table.html