🎨 update

This commit is contained in:
2024-12-08 01:10:08 +08:00
parent dbdfd835bd
commit 4d9b23c443
73 changed files with 1248 additions and 328 deletions

View File

@@ -15,7 +15,25 @@ export default [
children: [
...photo,
...albums,
...recycling_bin
...recycling_bin,
{
path: '/main/photo/upscale',
name: 'upscale',
component: () => import('@/views/Upscale/Upscale.vue'),
meta: {
requiresAuth: false,
title: '图像修复'
}
},
{
path: '/main/photo/share',
name: 'share',
component: () => import('@/views/ImageShare/ImageShare.vue'),
meta: {
requiresAuth: false,
title: '快传'
}
}
]
}

View File

@@ -3,7 +3,7 @@ import login from './modules/login';
import useStore from "@/store";
import {message} from "ant-design-vue";
import notFound from "./modules/notFound.ts";
import notFound from "./modules/not_found.ts";
import landing from "./modules/landing.ts";
import mainRouter from "./modules/main_router.ts";
import i18n from "@/locales";