vue3计算属性

Posted 安果移不动

tags:

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

 

<template>
  <input type="text" v-model="message">
</template>
<script setup lang="ts">


import ref, watch from "vue";

let message = ref<string>("小满")
watch(message, (newVal, oldVal) => 
  console.log(newVal, oldVal)
)
</script>

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

VUE3 之 计算属性与侦听器

Vue3.x computed函数----计算属性

Vue3计算属性computed

Vue3计算属性

vue3 setup 计算属性 computed

使用 Jest 测试 Vue3 组件时如何模拟计算属性