在el-table-column 中使用了 showArrayInfoAllValue 函数
<el-table-column prop="player_type" label="玩家类型" align="center">
<template slot-scope="scope">
<span>{{showArrayInfoAllValue(playerTypeInfo,'player_type',scope.row.player_type)}}</span>
<!--<span>1</span>-->
</template>
</el-table-column>
showArrayInfoAllValue 函数里面使用了sort方法进行排序
后通过在sort方法前使用slice()方法解决 ,原因为 https://github.com/vuejs/vue/issues/1153
刚开始以为自己的方法写成死循环了,后检查、测试发现没有。。。。通过搜索看到https://www.jianshu.com/p/c81255e74225 ,因此找到解决方案。