From e573a3ba1522639e488a6ec39cb96c2ccb5dc342 Mon Sep 17 00:00:00 2001 From: Burt <1020103647@qq.com> Date: Tue, 9 Jan 2024 19:24:13 +0800 Subject: [PATCH] feat: add pages/login/login.vue file --- src/pages.json | 7 +++++++ src/pages/login/login.vue | 9 +++++++++ uni-pages.d.ts | 1 + 3 files changed, 17 insertions(+) create mode 100644 src/pages/login/login.vue diff --git a/src/pages.json b/src/pages.json index 17ca0e5..75026c8 100644 --- a/src/pages.json +++ b/src/pages.json @@ -49,6 +49,13 @@ "path": "pages/demo/index", "type": "page" }, + { + "path": "pages/login/login", + "type": "page", + "style": { + "navigationBarTitleText": "登录" + } + }, { "path": "pages/my/index", "type": "page", diff --git a/src/pages/login/login.vue b/src/pages/login/login.vue new file mode 100644 index 0000000..b588cbc --- /dev/null +++ b/src/pages/login/login.vue @@ -0,0 +1,9 @@ + +{ + style: { navigationBarTitleText: '登录' }, +} + + + diff --git a/uni-pages.d.ts b/uni-pages.d.ts index 93b0ea6..39c3408 100644 --- a/uni-pages.d.ts +++ b/uni-pages.d.ts @@ -6,6 +6,7 @@ interface NavigateToOptions { url: "pages/index/index" | "pages/demo/index" | + "pages/login/login" | "pages/my/index" | "pages/throughout/index" | "pages/index/demo/component-auto-import" |