index.js 1.49 KB
/*
 * @Date: 2024-04-07 10:14:17
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-04-18 09:41:49
 * @FilePath: /fxPark/src/router/routes/modules/fxPark/index.js
 * @Description: 文件描述
 */
const index = [{
  path: '/',
  name: '“碳寻”复兴公园',
  component: () => import('@/views/fxPark/index.vue'),
  redirect: '',
  meta: {
    title: '“碳寻”复兴公园',
  },
  children: [],
}, {
  path: '/audio',
  name: '植物之声',
  component: () => import('@/views/fxPark/audio.vue'),
  redirect: '',
  meta: {
    title: '植物之声',
  },
  children: [],
}, {
  path: '/intro',
  name: '植被介绍',
  component: () => import('@/views/fxPark/intro.vue'),
  redirect: '',
  meta: {
    title: '植被介绍',
  },
  children: [],
}, {
  path: '/share',
  name: '生成海报±',
  component: () => import('@/views/fxPark/share.vue'),
  redirect: '',
  meta: {
    title: '生成海报±',
  },
  children: [],
}, {
  path: '/poster',
  name: '我的海报',
  component: () => import('@/views/fxPark/poster.vue'),
  redirect: '',
  meta: {
    title: '我的海报',
  },
  children: [],
}, {
  path: '/finish',
  name: '分享海报',
  component: () => import('@/views/fxPark/finish.vue'),
  redirect: '',
  meta: {
    title: '分享海报',
  },
  children: [],
}, {
  path: '/exhibition',
  name: '展览介绍',
  component: () => import('@/views/fxPark/exhibition.vue'),
  redirect: '',
  meta: {
    title: '展览介绍',
  },
  children: [],
}]

export default index;