当前位置:   article > 正文

如何实现element UI中table操作栏更多按钮的展示与折叠?_element ui 操作栏的按钮放到更多

element ui 操作栏的按钮放到更多
解决思路:

​ 直接使用elementUI文档上Popover 弹出框组件

废话不多说,直接上代码吧

<el-table :data="locationList" v-loading="loading" border class="table" ref="multipleTable" @selection-change="handleSelectionChange">
    <el-table-column type="selection" width="55"></el-table-column>
    <el-table-column v-for="(item,index) in tableLabel" :key="index" :prop="item.prop" :width="item.width" :label="item.label"></el-table-column>
    <el-table-column label="操作" width="350" align="center">
        <template slot-scope="scope">
            <el-button type="primary" plain size=

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/149285
推荐阅读