Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
fix(*): 入口页面修改为动态列表页面
Browse files Browse the repository at this point in the history
  • Loading branch information
mutoe committed Oct 19, 2018
1 parent 229be62 commit 0043461
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions src/routers/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import walletRoutes from "./wallet.js";
import currencyRoutes from "./currency.js";

const router = [
/* 基础入口 */
{ path: "/", redirect: "/signin" },
...baseRoutes,
/* 入口重定向 */
{ path: "/", redirect: "/feeds" },

...baseRoutes,
...signRoutes,
...feedRoutes,
...postRoutes,
Expand All @@ -29,16 +29,6 @@ const router = [
...walletRoutes,
...currencyRoutes,

// {
// path: "/post/fatie",
// name: "postGroupFeed",
// component: postGroupFeed,
// meta: {
// keepAlive: true,
// title: "发布帖子",
// requiresAuth: true
// }
// },
{ path: "*", component: NotFound } /* 404 页面 */
];

Expand Down

0 comments on commit 0043461

Please sign in to comment.