分类: 重构vue3体系

14 篇文章

04.计算属性和监听属性
计算属性 方式一 <script setup lang="ts">import {computed ,ref} from "vue"const name = ref("你好")const helloName = computed(()=>name.value+"vue3"); // 你好 vue3</script> 方…
03.to全家桶 toref / torefs / toRaw
toref 原始数据不会更新视图,数据会更新 <template>  <div>this is hello world</div>  <h1>{{ state }}</h1>  <button @click="handelClick">click&…
02.reactive 全家桶
用来绑定复杂的数据类型 如 对象 数组无需 .value 操作 基本使用 <template>  <div>this is hello world</div>  <h1>{{ obj.name }}</h1></template><script set…
01.ref 全家桶
基本用法 ref <template> <h1>{{data.name}}</h1></template><script setup lang="ts">import {ref} from "vue"const data = ref({name:'zhangsan'})data.name.…