vue用计算属性显示数组里最大值最小值
时间: 2023-03-14 20:16:07 浏览: 103
Vue computed计算属性的使用方法
5星 · 资源好评率100%
你可以使用计算属性来显示数组中的最大值和最小值,例如: computed: { maxValue() { return Math.max(...this.array) }, minValue() { return Math.min(...this.array) } }
阅读全文
Vue computed计算属性的使用方法