Vue+Element自定义多选框

Element UI 自定义表头多选框

<el-table-column width="55" align="center">
    <template slot="header" slot-scope="scope">
        <el-checkbox v-model="checkedAll" 
           class="el-checkbox__input is-indeterminate">
        </el-checkbox>
    </template>  
    <template slot-scope="scope">
        <el-checkbox v-model="scope.row.checkbox"
              @change="rowSelectionChange(scope.row)">
        </el-checkbox>
    </template>
</el-table-column>
发布了7 篇原创文章 · 获赞 0 · 访问量 492

猜你喜欢

转载自blog.csdn.net/T_chuxin/article/details/104411756
今日推荐