index.js 541 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';

export default [
  {
    path: '/xianyu',
    redirect: { name: 'ChannelPage' },
  },
  ...Order,
  ...Common,
  ...List,
  ...Product,
  ...Home,
  ...Passport,
  ...Address,
  ...Notice,
  ...Category,
  ...Activitys
];