Vue计算属性computed:

Posted 栗栗本栗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue计算属性computed:相关的知识,希望对你有一定的参考价值。

当页面中需要多次计算,可以使用计算属性,计算属性只会计算一次,并将计算结果缓存

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<div id="app">
    <p>单价:{{price}}</p>
    <p>数量:{{num}}</p>
    <p>总价:{{price * num}}</p>
    <hr>
    <p>总价:{{getTotalPrice()}}</p>
    <p>总价:{{getTotalPrice()}}</p>
    <p>总价:{{getTotalPrice()}}</p>
    <hr>
    <p>总价:{{totalPrice}}</p>
    <p>总价:{{totalPrice}}</p>
    <p>总价:{{totalPrice}}</p>
    <hr>
    <p>总价:{{totalPrice2}}</p>
    <p>总价:{{totalPrice2}}</p>
    <p>总价:{{totalPrice2}}</p>
</div>
</body>
</html>
<script src="js/vue.js"></script>
<script>
    new Vue({
        el: "#app",
        data: {
            price: 10,
            num: 8
        },
        methods: {
            getTotalPrice() {
                console.log("getTotalPrice");
                var total = this.price * this.num;
                return total;
            }
        },
        computed: {
            totalPrice() {
                console.log("totalPrice");
                var total = this.price * this.num;
                return total;
            },
            totalPrice2() {
                console.log("totalPrice2");
                return this.getTotalPrice();
            }
        }
    });
</script>

以上是关于Vue计算属性computed:的主要内容,如果未能解决你的问题,请参考以下文章

Vue中的计算属性computed和侦听器watch

Vue中的计算属性computed和侦听器watch

vue之watch和计算属性computed

Vue学习3:计算属性computed与监听器

vue3中computed计算属性函数

vue3 setup 计算属性 computed