+ You’ve successfully created a project with
+ Vite +
+ Vue 3.
+
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/TheWelcome.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/TheWelcome.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..5e6462538ecda2ce6758b16fcbbf6e2e40f5d683
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/TheWelcome.vue"
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+ Documentation
+
+ Vue’s
+ official documentation
+ provides you with all information you need to get started.
+
+
+
+
+
+
+ Tooling
+
+ This project is served and bundled with
+ Vite. The
+ recommended IDE setup is
+ VSCode +
+ Volar. If
+ you need to test your components and web pages, check out
+ Cypress and
+ Cypress Component Testing.
+
+
+
+ More instructions are available in README.md.
+
+
+
+
+
+
+ Ecosystem
+
+ Get official tools and libraries for your project:
+ Pinia,
+ Vue Router,
+ Vue Test Utils, and
+ Vue Dev Tools. If
+ you need more resources, we suggest paying
+ Awesome Vue
+ a visit.
+
+
+
+
+
+
+ Community
+
+ Got stuck? Ask your question on
+ Vue Land, our official
+ Discord server, or
+ StackOverflow. You should also subscribe to
+ our mailing list and follow
+ the official
+ @vuejs
+ twitter account for latest news in the Vue world.
+
+
+
+
+
+
+ Support Vue
+
+ As an independent project, Vue relies on community backing for its sustainability. You can help
+ us by
+ becoming a sponsor.
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/WelcomeItem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/WelcomeItem.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..a5eca70f81855b06fe4a9ba461f20fc4b9a049b7
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/WelcomeItem.vue"
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconCommunity.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconCommunity.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconDocumentation.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconDocumentation.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconEcosystem.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconEcosystem.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconSupport.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconSupport.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconTooling.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/components/icons/IconTooling.vue"
@@ -0,0 +1,19 @@
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/main.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9bb171cf48bd3e20c3a0a8eebfa3d23c9f6d56ea
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/main.js"
@@ -0,0 +1,13 @@
+import { createApp } from 'vue'
+import { createPinia } from 'pinia'
+
+import App from './App.vue'
+import router from './router'
+
+
+const app = createApp(App)
+
+app.use(createPinia())
+app.use(router)
+
+app.mount('#app')
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/router/index.js" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/router/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..35ce374169854b0155a1fe94cfb03c78b00b9d1d
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/router/index.js"
@@ -0,0 +1,20 @@
+import { createRouter, createWebHistory } from 'vue-router'
+import goods from "@/views/goods.vue"
+import car from "@/views/car.vue"
+const router = createRouter({
+ history: createWebHistory(import.meta.env.BASE_URL),
+ routes: [
+ {
+ path: '/',
+ name: 'home',
+ component: goods
+ },
+ {
+ path: '/car',
+ name: 'car',
+ component: car
+ }
+ ]
+})
+
+export default router
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/utils/axiosquest.js" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/utils/axiosquest.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2197b44d127c0fdfdace52bfa97f3790be6f0259
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/utils/axiosquest.js"
@@ -0,0 +1,12 @@
+import axios from "axios"
+
+const instance = axios.create({
+ baseURL: "http://localhost:2222"
+})
+
+instance.interceptors.response.use(function (response) {
+ console.log(response);
+ return response.data;
+})
+
+export default instance
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/car.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/car.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..42f18254fa3eedc2e6b510445a7d8a03fdabd566
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/car.vue"
@@ -0,0 +1,55 @@
+
+
+
+
{{index}}
+
{{item}}
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/goods.vue" "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/goods.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..5acbfcd4492e67dda38f1d6421b73de5c7eebb5b
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_axios/src/views/goods.vue"
@@ -0,0 +1,90 @@
+
+
+
+
+
{{ item.des }}
+
+ {{ item.price }}
+
+ 购买数量:
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/index.html"
new file mode 100644
index 0000000000000000000000000000000000000000..762871300c5d82f39504a3954d62f5e48fbf7399
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/index.html"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ 坤坤后台系统
+
+
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/favicon.ico"
new file mode 100644
index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/favicon.ico" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi01.jpeg"
new file mode 100644
index 0000000000000000000000000000000000000000..2b2ee91f420890d0baed111edf5303f0da82e38a
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi01.jpeg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi02.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..16f139f127da0534ec86a466253dfbc5f0719fc8
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi02.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi03.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi03.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..595edc0cfb344d08a37261226fa1374e80c9cfc4
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/heizi03.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun01.jpeg"
new file mode 100644
index 0000000000000000000000000000000000000000..3c88b7851b1be9711794c66c99571b37b88edfc2
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun01.jpeg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun02.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..e9b8f49946b3ebbcff8a527e2c9f42d19f64e2d2
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun02.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun03.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun03.jpeg"
new file mode 100644
index 0000000000000000000000000000000000000000..3d1332faae02d33d69d34bea80339fc2f6bcedb1
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/ikun03.jpeg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/kk.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/kk.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..dac3190572045c6a1b789c7754b19ce793e9771b
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/public/img/kk.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/App.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..9aa9f187f71986d65611ebeffdb4777a5f126cfb
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_chacao/vue-project/src/App.vue"
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconCommunity.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconCommunity.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconDocumentation.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconDocumentation.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconEcosystem.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconEcosystem.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconSupport.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconSupport.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconTooling.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/components/icons/IconTooling.vue"
@@ -0,0 +1,19 @@
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/main.js"
new file mode 100644
index 0000000000000000000000000000000000000000..1d4acd7cd1c792a84e9a63dba4754d7f302bdb07
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/main.js"
@@ -0,0 +1,3 @@
+import { createApp } from 'vue'
+import App from './App.vue'
+createApp(App).mount('#app')
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/utils/eventbus.js" "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/utils/eventbus.js"
new file mode 100644
index 0000000000000000000000000000000000000000..468fd85e7471c6f4f76393150414b9b97b7b4b02
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_emit_shopcar/src/utils/eventbus.js"
@@ -0,0 +1,5 @@
+import mitt from 'mitt'
+
+let emitter=mitt();
+
+export default emitter;
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/index.html"
new file mode 100644
index 0000000000000000000000000000000000000000..99f583aa2b835f6885f2c233a0e1f6d395fa42af
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/index.html"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ Vite App
+
+
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/public/favicon.ico"
new file mode 100644
index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/public/favicon.ico" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/App.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..03a7abebbb6f2b8c5b6e9e4d018d30f04afa0fdf
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/App.vue"
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/car.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/car.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..83ce057147859555ded078c442b9ed7ccf4639dc
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/car.vue"
@@ -0,0 +1,41 @@
+
+
+
+
{{index}}
+
{{item}}
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/goods.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/goods.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..79843aa78d30cb98b7b49689b4ed83e179f83802
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/goods.vue"
@@ -0,0 +1,67 @@
+
+
+
+
+
{{item.des}}
+
+ {{item.price}}
+
+ 购买数量:
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconCommunity.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconCommunity.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconDocumentation.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconDocumentation.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconEcosystem.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconEcosystem.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconSupport.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconSupport.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconTooling.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/components/icons/IconTooling.vue"
@@ -0,0 +1,19 @@
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/main.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c8e37b03b9c2289ea08f80feeca1880e2abc3a86
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/main.js"
@@ -0,0 +1,9 @@
+import { createApp } from 'vue'
+import App from './App.vue'
+import router from './router'
+
+const app = createApp(App)
+
+app.use(router)
+
+app.mount('#app')
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/router/index.js" "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/router/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..bde9bdd69d52993cad79a8bbdeb8c153e283b18f
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_keepalive/src/router/index.js"
@@ -0,0 +1,20 @@
+import { createRouter, createWebHistory } from 'vue-router'
+import goods from "../components/goods.vue"
+import car from "../components/car.vue"
+const router = createRouter({
+ history: createWebHistory(import.meta.env.BASE_URL),
+ routes: [
+ {
+ path: '/goods',
+ name: 'goods',
+ component: goods
+ },
+ {
+ path: '/car',
+ name: 'car',
+ component:car
+ }
+ ]
+})
+
+export default router
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/index.html" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/index.html"
new file mode 100644
index 0000000000000000000000000000000000000000..762871300c5d82f39504a3954d62f5e48fbf7399
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/index.html"
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ 坤坤后台系统
+
+
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/favicon.ico" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/favicon.ico"
new file mode 100644
index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/favicon.ico" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi01.jpeg"
new file mode 100644
index 0000000000000000000000000000000000000000..2b2ee91f420890d0baed111edf5303f0da82e38a
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi01.jpeg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi02.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..16f139f127da0534ec86a466253dfbc5f0719fc8
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi02.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi03.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi03.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..595edc0cfb344d08a37261226fa1374e80c9cfc4
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/heizi03.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun01.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun01.jpeg"
new file mode 100644
index 0000000000000000000000000000000000000000..3c88b7851b1be9711794c66c99571b37b88edfc2
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun01.jpeg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun02.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun02.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..e9b8f49946b3ebbcff8a527e2c9f42d19f64e2d2
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun02.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun03.jpeg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun03.jpeg"
new file mode 100644
index 0000000000000000000000000000000000000000..3d1332faae02d33d69d34bea80339fc2f6bcedb1
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/ikun03.jpeg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/kk.jpg" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/kk.jpg"
new file mode 100644
index 0000000000000000000000000000000000000000..dac3190572045c6a1b789c7754b19ce793e9771b
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/public/img/kk.jpg" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/App.vue" "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/App.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..e27b4a6b1fd0692ec791b0a40a60902db30b9bca
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_setup\350\257\255\346\263\225\347\263\226/src/App.vue"
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconCommunity.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconCommunity.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..2dc8b055253af30fb797037e2fe260505f0cf711
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconCommunity.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconDocumentation.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconDocumentation.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..6d4791cfbcf2782b3e5ffbabd042d4c47b2fbbed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconDocumentation.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconEcosystem.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconEcosystem.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..c3a4f078c0bd340a33c61ea9ecd8a755d03571ed
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconEcosystem.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconSupport.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconSupport.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..7452834d3ef961ce24c3a072ddba2620b6158bae
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconSupport.vue"
@@ -0,0 +1,7 @@
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconTooling.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconTooling.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..660598d7c76644ffe126a1a1feb1606650bfb937
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/icons/IconTooling.vue"
@@ -0,0 +1,19 @@
+
+
+
+
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/left.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/left.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..f01585af4a217cd21be9c9a9dffe2e54e2ffb578
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/left.vue"
@@ -0,0 +1,58 @@
+
+
+
+
+ 食物
+
+
+
+ 风景
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/screen.vue" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/screen.vue"
new file mode 100644
index 0000000000000000000000000000000000000000..ccfec3fc6cae9adadd6c3361097e2653cac84676
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/components/screen.vue"
@@ -0,0 +1,34 @@
+
+
+
♥今生不悔爱坤坤,来世还要再爱坤♥
+
+
---帅坤
+
---天生我材蔡徐坤
+
---小黑子
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/main.js" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/main.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c8e37b03b9c2289ea08f80feeca1880e2abc3a86
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/main.js"
@@ -0,0 +1,9 @@
+import { createApp } from 'vue'
+import App from './App.vue'
+import router from './router'
+
+const app = createApp(App)
+
+app.use(router)
+
+app.mount('#app')
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/router/index.js" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/router/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..30c0ca40359ec4d10378ad4ac9e9cc0f2f2deec1
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26101/src/router/index.js"
@@ -0,0 +1,26 @@
+import { createRouter, createWebHistory } from 'vue-router'
+import left from '../components/left.vue'
+import food from '../components/food.vue'
+import screen from '../components/screen.vue'
+const router = createRouter({
+ routes: [
+ {
+ path: '/leftlist',
+ name: 'leftlist',
+ component: left
+ },
+ {
+ path: '/food',
+ name: 'food',
+ component: food
+ },
+ {
+ path:'/screen',
+ name:'screen',
+ component:screen
+ }
+ ],
+ history:createWebHistory()
+})
+
+export default router
diff --git "a/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26102_\345\265\214\345\245\227\350\267\257\347\224\261.zip" "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26102_\345\265\214\345\245\227\350\267\257\347\224\261.zip"
new file mode 100644
index 0000000000000000000000000000000000000000..88e7829b60f249d749c619537231235328163b21
Binary files /dev/null and "b/\347\216\213\351\224\246\345\206\233/vue_\350\267\257\347\224\26102_\345\265\214\345\245\227\350\267\257\347\224\261.zip" differ
diff --git "a/\347\216\213\351\224\246\345\206\233/\346\214\207\344\273\244\344\275\234\344\270\232.html" "b/\347\216\213\351\224\246\345\206\233/\346\214\207\344\273\244\344\275\234\344\270\232.html"
new file mode 100644
index 0000000000000000000000000000000000000000..0342e2a55697b00ff6e594a1bf65cb958b064576
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/\346\214\207\344\273\244\344\275\234\344\270\232.html"
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+ 指令作业
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/api.js" "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/api.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b53928011f5fe9349ece976076dc1814ee25cc50
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/api.js"
@@ -0,0 +1,16 @@
+let express = require("express");
+
+let app = express();
+
+app.get("/list",function(req,res){
+ let data=[];
+ data.push('中国最北--漠河');
+ data.push('中国最南--三沙');
+ data.push('中国洼地--吐鲁番盆地');
+ data.push('中国最绿--福建');
+ res.setHeader('Content-Type','text/html;charset=utf-8');
+ res.header("Access-Control-Allow-Origin","*");
+ res.end(JSON.stringify(data));
+})
+
+app.listen(8080);
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/\347\224\237\345\221\275\345\221\250\346\234\237\344\275\234\344\270\232.html" "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/\347\224\237\345\221\275\345\221\250\346\234\237\344\275\234\344\270\232.html"
new file mode 100644
index 0000000000000000000000000000000000000000..619dd351decbc529b18eea30810ab4208e177ccc
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/\347\224\237\345\221\275\345\221\250\346\234\237/\347\224\237\345\221\275\345\221\250\346\234\237\344\275\234\344\270\232.html"
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+ 生命周期作业
+
+
+
+
+
{{item}}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/\347\273\204\344\273\266\344\275\234\344\270\232.html" "b/\347\216\213\351\224\246\345\206\233/\347\273\204\344\273\266\344\275\234\344\270\232.html"
new file mode 100644
index 0000000000000000000000000000000000000000..53fd2995b7379d6fa1bbfc111240fd7dc03e5646
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/\347\273\204\344\273\266\344\275\234\344\270\232.html"
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+ 列表
+
+
+
+
+
+
+
+
+
购买总数{{totalNum}}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\347\216\213\351\224\246\345\206\233/\350\256\241\347\256\227\345\261\236\346\200\247.html" "b/\347\216\213\351\224\246\345\206\233/\350\256\241\347\256\227\345\261\236\346\200\247.html"
new file mode 100644
index 0000000000000000000000000000000000000000..5eb3997acc26dadc68b6e7a0570994f2e2c3d837
--- /dev/null
+++ "b/\347\216\213\351\224\246\345\206\233/\350\256\241\347\256\227\345\261\236\346\200\247.html"
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+ 作业列表
+
+
+
+