From 1e1e7c320fadcc88af3b816b0367c3ec9a620aca Mon Sep 17 00:00:00 2001 From: xingyy <64720302+Concur-max@users.noreply.github.com> Date: Mon, 13 Jan 2025 11:30:20 +0800 Subject: [PATCH] =?UTF-8?q?feat(login):=20=E8=AE=BE=E7=BD=AE=E7=99=BB?= =?UTF-8?q?=E5=BD=95=E9=A1=B5=E9=9D=A2=E5=B8=83=E5=B1=80-=20=E5=9C=A8?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5=E9=9D=A2=E7=BB=84=E4=BB=B6=E4=B8=AD?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BA=86=20definePageMeta=20=E4=BB=A5?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E7=99=BB=E5=BD=95=E5=B8=83=E5=B1=80=20-=20?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=20layout=20=E5=B1=9E=E6=80=A7=EF=BC=8C?= =?UTF-8?q?=E5=80=BC=E4=B8=BA=20'login'=EF=BC=8C=E4=BB=A5=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E7=99=BB=E5=BD=95=E5=B8=83=E5=B1=80=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/pages/login/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/pages/login/index.vue b/app/pages/login/index.vue index 6f5848c..b4f54f3 100644 --- a/app/pages/login/index.vue +++ b/app/pages/login/index.vue @@ -2,6 +2,9 @@ import { useRouter } from 'vue-router'; const router = useRouter(); +definePageMeta({ + layout: 'login', +}) function goToPage() { router.push('/countryRegion'); }