vue2 computed 使用方法
时间: 2023-12-07 07:38:43 浏览: 132
watch和computed的区别经典案例
Vue2中的computed属性可以根据其他属性的值计算出一个新的属性值,并且在依赖的属性值发生变化时自动更新。使用computed属性可以避免在模板中写过多的逻辑代码,使得代码更加简洁易懂。
computed属性的使用方法如下:
1. 在Vue实例中定义computed属性,属性值为一个函数,函数返回计算后的值。
2. 在模板中使用computed属性,直接使用属性名即可。
下面是一个使用computed属性的例子:
```html
<template>
<div>
<p>商品价格:{{ price }}</p>
<p>商品折扣:{{ discount }}</p>
<p>商品实际价格:{{ realPrice }}</p>
</div>
</template>
<script>
export default {
data() {
return {
price: 100,
discountRate: 0.8
}
},
computed: {
discount() {
return this.price * (1 - this.discountRate)
},
realPrice() {
return this.price - this.discount
}
}
}
</script>
```
在上面的例子中,我们定义了一个computed属性discount和realPrice,分别计算商品的折扣和实际价格。在模板中直接使用这两个属性即可。
阅读全文