trendingTermList.js 568 B

12345678910111213141516171819
  1. /** When your routing table is too long, you can split it into small modules **/
  2. import Layout from "@/layout";
  3. const trendingTermListRouter = {
  4. path: "/trendingTermList",
  5. component: Layout,
  6. redirect: "/trendingTermList/trendingTermListIndex",
  7. meta: { title: "热词管理", icon: "sidebar-icon9" },
  8. children: [
  9. {
  10. path: "trendingTermListIndex",
  11. component: () => import("@/views/trending-words-list/index"),
  12. name: "trendingTermListIndex",
  13. meta: { title: "热词管理列表" }
  14. }
  15. ]
  16. };
  17. export default trendingTermListRouter;