index.js
767 Bytes
import Order from './order';
import Common from './common';
import List from './list';
import Product from './product';
import Home from './home';
import Passport from './passport';
import Address from './address';
import Notice from './notice';
import Category from './category';
import Activitys from './activitys';
import Second from './second';
import Article from './article';
export default [
{
path: '/xianyu/yasTest',
name: 'yasTest',
component: () => import(/* webpackChunkName: "yasTest" */ './yasTest'),
},
{
path: '/xianyu',
redirect: { name: 'ChannelPage' },
},
...Order,
...Common,
...List,
...Product,
...Home,
...Passport,
...Address,
...Notice,
...Category,
...Activitys,
...Second,
...Article
];