Files
schisandra-cloud-album-front/src/router/modules/recycling_bin.ts
2024-12-06 00:16:23 +08:00

14 lines
289 B
TypeScript

import RecyclingBin from "@/views/RecyclingBin/RecyclingBin.vue";
export default [
{
path: '/main/photo/recycling',
name: 'recycling',
component: RecyclingBin,
meta: {
requiresAuth: true,
title: '回收站'
},
},
];