diff --git a/src/components/aboutUe/aboutUe.vue b/src/components/aboutUs/aboutUs.vue similarity index 100% rename from src/components/aboutUe/aboutUe.vue rename to src/components/aboutUs/aboutUs.vue diff --git a/src/components/home/home.vue b/src/components/home/home.vue index a74f86c..b570f50 100644 --- a/src/components/home/home.vue +++ b/src/components/home/home.vue @@ -27,18 +27,6 @@
{{ characters == 1 ? "经典案例" : "Cases" }}
-
- {{ characters == 1 ? "邃芒图灵" : "SuiMangTuring" }} -
-
- {{ characters == 1 ? "邃芒慧播" : "SuiMangLive" }} -
-
- {{ characters == 1 ? "邃芒慧生" : "SuiMangGen" }} -
-
- {{ characters == 1 ? "邃芒慧影" : "SuiMangReflex" }} -
@@ -294,7 +282,7 @@ -
+
-
+
ABOUT ME
@@ -658,6 +646,9 @@ export default { }); // console.log(document.querySelector(id),); }, + goAboutUs() { + this.$router.push("/aboutUs"); + }, submit() { this.$refs.form.validate((valid) => { console.log(valid); diff --git a/src/router/index.js b/src/router/index.js index 5e1f86d..27e3d66 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -17,10 +17,10 @@ const routes = [ component: () => import("../components/home/home"), }, { - path: '/aboutUe', - name: 'aboutUe', + path: '/aboutUs', + name: 'aboutUs', // component: Home - component: () => import("../components/aboutUe/aboutUe"), + component: () => import("../components/aboutUs/aboutUs"), }, { path: '/styleAdd', @@ -28,12 +28,18 @@ const routes = [ // component: Home component: () => import("../components/styleAdd/styleAdd"), }, + { + path: '/turing', + name: 'turing', + // component: Home + component: () => import("../components/views/turing"), + }, ] const router = new VueRouter({ mode: 'history', base: process.env.BASE_URL, - routes + routes, }) export default router