Closed Sakurapole closed 8 months ago
如下图:
原因: 代码中在进行数组逆序时,直接在原数组使用了reverse函数,导致原数组发生变化从而导致递归
修改: 在YunPostCollpase.vue这个文件中将
const sortedYears = computed(() => { const y = years.value const arr = y.sort((a, b) => b - a) return isDesc.value ? arr : arr.reverse() })
修改为
const sortedYears = computed(() => { const y = years.value const arr = y.sort((a, b) => b - a) return isDesc.value ? arr : [...arr].reverse() })
感谢反馈,已修复。https://github.com/YunYouJun/valaxy/commit/7a4533e2211e0af5c8813ab4370a1d3fca2a4d1f
如下图:
原因: 代码中在进行数组逆序时,直接在原数组使用了reverse函数,导致原数组发生变化从而导致递归
修改: 在YunPostCollpase.vue这个文件中将
修改为