From 1785d1f178fa6a628ccd1358554a2f4471826183 Mon Sep 17 00:00:00 2001 From: maochaoying <925670706@qq.com> Date: Mon, 22 May 2023 16:21:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=87=E6=8D=A2=E5=A4=B4=E9=83=A8svg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AboutUs.vue | 7 +- src/components/Header.vue | 184 +++++++++++++++++++++++++++++++++++++++++---- src/pages/About.vue | 10 +++ src/router/index.js | 2 + 4 files changed, 189 insertions(+), 14 deletions(-) create mode 100644 src/pages/About.vue diff --git a/src/components/AboutUs.vue b/src/components/AboutUs.vue index 929cedf..f303928 100644 --- a/src/components/AboutUs.vue +++ b/src/components/AboutUs.vue @@ -5,7 +5,7 @@ line1="专业水下视学设备团队,研发出品,多年的使用经验打磨的好产品,支持定制,想您所想,另外公司有硬件研发团队" line2="软件研发团队、结构研发团队、外观研发团队也能帮您研发设计其他产品。" /> -
+
了解更多
@@ -16,6 +16,11 @@ diff --git a/src/router/index.js b/src/router/index.js index a4c3639..d39489f 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,11 +1,13 @@ import { createRouter, createWebHashHistory } from 'vue-router' const Home = () => import('@/pages') const Product = () => import('@/pages/Product') +const About = () => import('@/pages/About') // 配置路由信息 const routes = [ { path: '/', component: Home }, { path: '/product', component: Product }, + { path: '/about', component: About }, ] const router = createRouter({