diff --git a/20_脚手架/vue3_test/2.src_初识Vue3的setup/App.vue b/20_脚手架/vue3_test/2.src_初识Vue3的setup/App.vue new file mode 100644 index 0000000..73bd52f --- /dev/null +++ b/20_脚手架/vue3_test/2.src_初识Vue3的setup/App.vue @@ -0,0 +1,28 @@ + + 个人信息: + 姓名:{{name}} + 年龄:{{age}} + 点击 + + + diff --git a/20_脚手架/vue3_test/2.src_初识Vue3的setup/assets/logo.png b/20_脚手架/vue3_test/2.src_初识Vue3的setup/assets/logo.png new file mode 100644 index 0000000..f3d2503 Binary files /dev/null and b/20_脚手架/vue3_test/2.src_初识Vue3的setup/assets/logo.png differ diff --git a/20_脚手架/vue3_test/2.src_初识Vue3的setup/main.js b/20_脚手架/vue3_test/2.src_初识Vue3的setup/main.js new file mode 100644 index 0000000..8a90e5c --- /dev/null +++ b/20_脚手架/vue3_test/2.src_初识Vue3的setup/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 591a031..73bd52f 100644 --- a/20_脚手架/vue3_test/src/App.vue +++ b/20_脚手架/vue3_test/src/App.vue @@ -1,26 +1,28 @@ - - + 个人信息: + 姓名:{{name}} + 年龄:{{age}} + 点击 - - diff --git a/20_脚手架/vue3_test/src/components/HelloWorld.vue b/20_脚手架/vue3_test/src/components/HelloWorld.vue deleted file mode 100644 index 879051a..0000000 --- a/20_脚手架/vue3_test/src/components/HelloWorld.vue +++ /dev/null @@ -1,58 +0,0 @@ - - - {{ msg }} - - For a guide and recipes on how to configure / customize this project, - check out the - vue-cli documentation. - - Installed CLI Plugins - - babel - eslint - - Essential Links - - Core Docs - Forum - Community Chat - Twitter - News - - Ecosystem - - vue-router - vuex - vue-devtools - vue-loader - awesome-vue - - - - - - - -
- For a guide and recipes on how to configure / customize this project, - check out the - vue-cli documentation. -