element ui 中 table 排序 sortable失效问题

sortable效果:(不生效)

在这里插入图片描述

<el-table-column label="位置" sortable align="center" width="180">
          <template slot-scope="scope">
            <span style="margin-left: 10px">首页顶部banner{{ scope.row.priority }}号位</span>
          </template>
</el-table-column>

结果点击上图上下箭头毫无反应,在el-table-column中加上prop="name"生效

<el-table-column label="位置" prop="priority" sortable align="center" width="180">
          <template slot-scope="scope">
            <span style="margin-left: 10px">首页顶部banner{{ scope.row.priority }}号位</span>
          </template>
        </el-table-column>

版权声明:本文为weixin_48371382原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。