diff --git a/20_脚手架/vue3_test/20.src_Teleport/App.vue b/20_脚手架/vue3_test/20.src_Teleport/App.vue
new file mode 100644
index 0000000..589afdf
--- /dev/null
+++ b/20_脚手架/vue3_test/20.src_Teleport/App.vue
@@ -0,0 +1,23 @@
+
+
+
我是app组件
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/20.src_Teleport/assets/logo.png b/20_脚手架/vue3_test/20.src_Teleport/assets/logo.png
new file mode 100644
index 0000000..f3d2503
Binary files /dev/null and b/20_脚手架/vue3_test/20.src_Teleport/assets/logo.png differ
diff --git a/20_脚手架/vue3_test/20.src_Teleport/components/Child.vue b/20_脚手架/vue3_test/20.src_Teleport/components/Child.vue
new file mode 100644
index 0000000..3d0ebcd
--- /dev/null
+++ b/20_脚手架/vue3_test/20.src_Teleport/components/Child.vue
@@ -0,0 +1,21 @@
+
+
+
我是child组件
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/20.src_Teleport/components/Dialog.vue b/20_脚手架/vue3_test/20.src_Teleport/components/Dialog.vue
new file mode 100644
index 0000000..c56923d
--- /dev/null
+++ b/20_脚手架/vue3_test/20.src_Teleport/components/Dialog.vue
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
这是一个弹窗
+
内容
+
内容
+
内容
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/20.src_Teleport/components/Son.vue b/20_脚手架/vue3_test/20.src_Teleport/components/Son.vue
new file mode 100644
index 0000000..0f02fa3
--- /dev/null
+++ b/20_脚手架/vue3_test/20.src_Teleport/components/Son.vue
@@ -0,0 +1,22 @@
+
+
+
我是son组件
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/20.src_Teleport/main.js b/20_脚手架/vue3_test/20.src_Teleport/main.js
new file mode 100644
index 0000000..8a90e5c
--- /dev/null
+++ b/20_脚手架/vue3_test/20.src_Teleport/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/App.vue b/20_脚手架/vue3_test/src/App.vue
index 0428591..589afdf 100644
--- a/20_脚手架/vue3_test/src/App.vue
+++ b/20_脚手架/vue3_test/src/App.vue
@@ -1,35 +1,23 @@
-
-
我是app组件(祖)
+
+
我是app组件
+
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/src/components/Child.vue b/20_脚手架/vue3_test/src/components/Child.vue
new file mode 100644
index 0000000..3d0ebcd
--- /dev/null
+++ b/20_脚手架/vue3_test/src/components/Child.vue
@@ -0,0 +1,21 @@
+
+
+
我是child组件
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/src/components/Dialog.vue b/20_脚手架/vue3_test/src/components/Dialog.vue
new file mode 100644
index 0000000..c56923d
--- /dev/null
+++ b/20_脚手架/vue3_test/src/components/Dialog.vue
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
这是一个弹窗
+
内容
+
内容
+
内容
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/20_脚手架/vue3_test/src/components/Son.vue b/20_脚手架/vue3_test/src/components/Son.vue
new file mode 100644
index 0000000..0f02fa3
--- /dev/null
+++ b/20_脚手架/vue3_test/src/components/Son.vue
@@ -0,0 +1,22 @@
+
+