019:尚硅谷watch监视情况3学习示例

This commit is contained in:
heiye111
2025-10-02 14:33:57 +08:00
parent a7aea6f4de
commit 5391058445

View File

@@ -1,7 +1,7 @@
<template>
<div class="person">
<h2>姓名:{{ person.name }}</h2>
<p>年龄: {{ person.age }}</p>
<h2>年龄: {{ person.age }}</h2>
<button @click="changeName">Add Sun</button>
<button @click="changePerson">Change Person</button>
@@ -12,19 +12,20 @@
<script setup lang="ts">
import { ref, watch } from 'vue'
let person = ref({name: 'John', age: 30})
import { reactive, watch } from 'vue'
let person = reactive({name: 'John', age: 30})
function changeName(){
person.value.name += 'Mary张三'
console.log(person.value.name);
person.name += '~'
person.age += 100
console.log(person.name);
}
function changePerson(){
person.value = {name: 'Mary332', age: 20}
Object.assign(person, {name: 'Mary', age: 20})
}
const stopWatch = watch(person, (newValue, oldValue) => {
watch(person, (newValue, oldValue) => {
console.log('person的值发生了变化', newValue, oldValue);
},{deep: true})
})
</script>