vue隐藏路由的方法

  • Post author:
  • Post category:vue


先来看下效果,他在首页的时候是不显示路由的,点击跳转到其他页面了才会显示

在这里插入图片描述

打开 index.js,加上 mode : ” history ”

import Vue from 'vue'
import Router from 'vue-router'

Vue.use(Router)

export default new Router({
  mode:"history",
  routes: [
    {
      path: '/',
      name: '/home',
      component: ()=>import("@/components/home"),
    },
  ]
})



版权声明:本文为swx999原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。