美文网首页
element table 禁止拖动

element table 禁止拖动

作者: sunflower_07 | 来源:发表于2019-09-27 14:11 被阅读0次

    表格禁止拖动,只需要添加个el-table-column 上添加 :resizable="false",就可以了。

    <div class="cotent-my" >
                      <el-table :data="it.records"   border style="width: 100%">
                      <el-table-column  prop="spaceName" align="center" :label="it.spaceName" :resizable="false"> </el-table-column>
                      <el-table-column prop="score" align="center"  width="90" label="平均分" :resizable="false">  </el-table-column>
                    </el-table>
    </div>
    
    代码图.png

    喜欢就留个爪爪吧。

    相关文章

      网友评论

          本文标题:element table 禁止拖动

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