<template>
<div>
最小值: {{ minValue }}
最大值: {{ maxValue }}
</div>
</template>
<script>
export default {
data() {
return {
numbers: [10, 2, 33, 4, 55, 6]
};
},
computed: {
minValue() {
return Math.min(...this.numbers);
},
maxValue() {
return Math.max(...this.numbers);
}
}
};
</script>
vue 一个数组 获取最大值与最小值
最新推荐文章于 2024-09-06 10:13:04 发布