diff --git a/20_脚手架/vue3_test/13.src_toRef和toRefs/App.vue b/20_脚手架/vue3_test/13.src_toRef和toRefs/App.vue
new file mode 100644
index 0000000..523ca4e
--- /dev/null
+++ b/20_脚手架/vue3_test/13.src_toRef和toRefs/App.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+
diff --git a/20_脚手架/vue3_test/13.src_toRef和toRefs/assets/logo.png b/20_脚手架/vue3_test/13.src_toRef和toRefs/assets/logo.png
new file mode 100644
index 0000000..f3d2503
Binary files /dev/null and b/20_脚手架/vue3_test/13.src_toRef和toRefs/assets/logo.png differ
diff --git a/20_脚手架/vue3_test/13.src_toRef和toRefs/components/demo.vue b/20_脚手架/vue3_test/13.src_toRef和toRefs/components/demo.vue
new file mode 100644
index 0000000..93ee003
--- /dev/null
+++ b/20_脚手架/vue3_test/13.src_toRef和toRefs/components/demo.vue
@@ -0,0 +1,37 @@
+
+ {{ person }}
+ 姓名:{{ name }}
+ 年龄:{{ age }}
+ 薪资:{{ job.j1.salary }}
+
+
+
+
+
+
diff --git a/20_脚手架/vue3_test/13.src_toRef和toRefs/main.js b/20_脚手架/vue3_test/13.src_toRef和toRefs/main.js
new file mode 100644
index 0000000..8a90e5c
--- /dev/null
+++ b/20_脚手架/vue3_test/13.src_toRef和toRefs/main.js
@@ -0,0 +1,10 @@
+// 引入的不再是Vue构造函数, 引入的是一个名为createApp的工厂函数
+import { createApp } from 'vue'
+import App from './App.vue'
+
+// createApp(App).mount('#app')
+
+// 创建应用实例对象
+const app = createApp(App)
+console.log('@@@',app)
+app.mount('#app')
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/src/components/demo.vue b/20_脚手架/vue3_test/src/components/demo.vue
index ccdba68..93ee003 100644
--- a/20_脚手架/vue3_test/src/components/demo.vue
+++ b/20_脚手架/vue3_test/src/components/demo.vue
@@ -1,26 +1,37 @@
- 当前求和为:{{ sum }}
-
-
- 当前点击时鼠标的坐标为:x:{{point.x}} y:{{point.y}}
+ {{ person }}
+ 姓名:{{ name }}
+ 年龄:{{ age }}
+ 薪资:{{ job.j1.salary }}
+
+
+
diff --git a/20_脚手架/vue3_test/src/hooks/usePoint.js b/20_脚手架/vue3_test/src/hooks/usePoint.js
deleted file mode 100644
index c91624c..0000000
--- a/20_脚手架/vue3_test/src/hooks/usePoint.js
+++ /dev/null
@@ -1,24 +0,0 @@
-import {onBeforeUnmount, onMounted, reactive} from "vue";
-
-export default function() {
- let point = reactive({
- x: 0,
- y: 0
- })
-
- function savePoint() {
- console.log(event.pageX, event.pageY)
- point.x = event.pageX
- point.y = event.pageY
- }
-
- onMounted(() => {
- window.addEventListener('click', savePoint)
- })
-
- onBeforeUnmount(() => {
- window.removeEventListener('click', savePoint)
- })
-
- return point
-}