From 863507ade1b13da73a933277f225ca281d9c7ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A9=99=E5=AD=90?= <454313500@qq.com> Date: Mon, 3 Jun 2024 22:21:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0start=E5=90=AF?= =?UTF-8?q?=E5=8A=A8=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Yi.Bbs.Vue3/src/router/index.js | 8 +++ Yi.Bbs.Vue3/src/views/start/Index.vue | 78 +++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 Yi.Bbs.Vue3/src/views/start/Index.vue diff --git a/Yi.Bbs.Vue3/src/router/index.js b/Yi.Bbs.Vue3/src/router/index.js index c40f4ed2..a2782a2b 100644 --- a/Yi.Bbs.Vue3/src/router/index.js +++ b/Yi.Bbs.Vue3/src/router/index.js @@ -57,6 +57,14 @@ const router = createRouter({ title: "首页", }, }, + { + name: "start", + path: "/start", + component: () => import("../views/start/Index.vue"), + meta: { + title: "开始", + }, + }, { name: "article", path: "/article/:discussId/:articleId?", diff --git a/Yi.Bbs.Vue3/src/views/start/Index.vue b/Yi.Bbs.Vue3/src/views/start/Index.vue new file mode 100644 index 00000000..9793391b --- /dev/null +++ b/Yi.Bbs.Vue3/src/views/start/Index.vue @@ -0,0 +1,78 @@ + + \ No newline at end of file