240 发简信
IP属地:四川
  • 遇到一个问题 <el-table
    :data="tableData"
    header-cell-class-name="list-header-layout-bg"
    border
    style="width: 100%">
    <el-table-column
    :prop="item.date"
    :label="item.label"
    :min-width="item.width"
    v-for="item,i in moduleList" :key="i"
    >
    <template slot-scope="scope" v-if="item.type!=='1'" class="rrrr">
    <el-button @click="handleClick(scope)" type="text" size="small">111</el-button>
    </template>
    </el-table-column>
    </el-table> ,这种就是动态添加template,发现展示不对,template 不能用v-if吗????那怎么解决这种动态可以操作的情况呢!

    VUE2.0+ElementUI2.0表格el-table:循环动态列渲染的写法

    先看看ElementUI里关于el-table的template数据结构: 再看看ElementUI里关于el-table的data数据结构: 那么问题来了,如果有很多pro...