From f0bffb821c374e615d2d6a748c77f562bbdebda5 Mon Sep 17 00:00:00 2001 From: Seven Date: Fri, 12 Dec 2025 01:27:04 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E9=87=8D=E5=AE=9A=E5=90=91=E8=87=B3=20riwa=20=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=B9=B6=E6=B7=BB=E5=8A=A0=20riwa=20=E8=A7=86?= =?UTF-8?q?=E5=9B=BE=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.ts | 6 +++--- src/views/{home => riwa}/index.vue | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename src/views/{home => riwa}/index.vue (100%) diff --git a/src/router/index.ts b/src/router/index.ts index 9f676b0..7b2c611 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -4,15 +4,15 @@ import { createRouter, createWebHistory } from "@ionic/vue-router"; const routes: Array = [ { path: "/", - redirect: "/layout/home", + redirect: "/layout/riwa", }, { path: "/layout", component: () => import("@/components/layout/default.vue"), children: [ { - path: "home", - component: () => import("@/views/home/index.vue"), + path: "riwa", + component: () => import("@/views/riwa/index.vue"), }, { path: "market", diff --git a/src/views/home/index.vue b/src/views/riwa/index.vue similarity index 100% rename from src/views/home/index.vue rename to src/views/riwa/index.vue