美文网首页
vue中在表格里渲染对象

vue中在表格里渲染对象

作者: 小水嘀哩哒 | 来源:发表于2020-05-20 16:52 被阅读0次

    <el-table-column
    label="标签"
    header-align="center"
    align="center"
    show-overflow-tooltip
    width="200"
    >
    <template slot-scope="scope">
    <p class="labelDiv">
    <span v-for="(items,key,index) of scope.row.Labels" :key="index" class="labels">{{key}}:{{items}}</span>
    </p>
    </template>
    </el-table-column>

    data=[
    {
    name:'张三',
    labels:{
    color:red,
    age:18
    }
    }
    ]

    相关文章

      网友评论

          本文标题:vue中在表格里渲染对象

          本文链接:https://www.haomeiwen.com/subject/yzynohtx.html