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计算属性的主要内容,如果未能解决你的问题,请参考以下文章