diff --git a/apps/frontend/src/router/index.ts b/apps/frontend/src/router/index.ts index 3421579..b3e2154 100644 --- a/apps/frontend/src/router/index.ts +++ b/apps/frontend/src/router/index.ts @@ -56,8 +56,19 @@ const routes = [ component: () => import('@/views/manage/ManageQRCodeChatView.vue'), props: true, }, + // { + // path: '/r/:qr_code_uri', + // redirect: (to) => { + // return { + // name: ROUTE_NAMES.READ_QR_CODE, + // params: to.params, + // query: to.params.query, + // } + // }, + // }, { path: '/read/qr/:qr_code_uri', + alias: '/r/:qr_code_uri', name: ROUTE_NAMES.READ_QR_CODE, component: () => import('@/views/ReadQRCodeView.vue'), props: true,