(vue)el-table使用作用域插槽(scoped slot)给数据添加单位

(vue)el-table使用作用域插槽(scoped slot)给数据添加单位


<el-table-column prop="age" label="年龄">
 <template slot-scope="scope">
    {
    
    {
    
     scope.row.age }}</template>
</el-table-column>

猜你喜欢

转载自blog.csdn.net/qq_44754635/article/details/132409774