14 lines
289 B
TypeScript
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: '回收站'
|
|
},
|
|
},
|
|
];
|