-
+
\ No newline at end of file
diff --git a/学习VUE/hello_vue3/笔记/reactive监视某一个属性某个对象.vue b/学习VUE/hello_vue3/笔记/reactive监视某一个属性某个对象.vue
new file mode 100644
index 0000000..df38bf0
--- /dev/null
+++ b/学习VUE/hello_vue3/笔记/reactive监视某一个属性某个对象.vue
@@ -0,0 +1,67 @@
+
+
+
姓名:{{ person.name }}
+
年龄:{{ person.age }}
+
汽车:{{ person.car.c1 }}-{{ person.car.c2 }}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/学习VUE/hello_vue3/笔记/ref对比reactive.vue b/学习VUE/hello_vue3/笔记/ref对比reactive.vue
index 3bdcbc8..22f877b 100644
--- a/学习VUE/hello_vue3/笔记/ref对比reactive.vue
+++ b/学习VUE/hello_vue3/笔记/ref对比reactive.vue
@@ -3,12 +3,11 @@
{{ name }}
{{ age }}
{{ address }}
-
{{ car.price }}
-
{{ car.brand }}
+
{{ car.price }}-----{{ car.brand }}
-
+
{{ g.name }}
@@ -17,34 +16,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/学习VUE/hello_vue3/笔记/监视ref定义的对象数据.vue b/学习VUE/hello_vue3/笔记/监视ref定义的对象数据.vue
new file mode 100644
index 0000000..f731f0f
--- /dev/null
+++ b/学习VUE/hello_vue3/笔记/监视ref定义的对象数据.vue
@@ -0,0 +1,47 @@
+
+
+
{{ me.name }}
+
{{ me.age }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/学习VUE/hello_vue3/笔记/监视ref定义的数据.vue b/学习VUE/hello_vue3/笔记/监视ref定义的数据.vue
new file mode 100644
index 0000000..ff915fd
--- /dev/null
+++ b/学习VUE/hello_vue3/笔记/监视ref定义的数据.vue
@@ -0,0 +1,36 @@
+
+