vue3 setup 计算属性 computed
Posted 咸瑜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3 setup 计算属性 computed相关的知识,希望对你有一定的参考价值。
<script> // computed 计算属性 const app = Vue.createApp( setup() // 引入计算属性 const reactive, computed = Vue; const countObj = reactive( count: 0);
本文来自博客园,作者:咸瑜,转载请注明原文链接:https://www.cnblogs.com/bi-hu/p/16143213.html
以上是关于vue3 setup 计算属性 computed的主要内容,如果未能解决你的问题,请参考以下文章
vue3.0 Composition API 上手初体验 神奇的 setup 函数 计算属性 computed