如何去掉vue路由中的#号?
vue开发时地址栏上的ip后面会跟着一个#号,如果想去掉这个井号,可以在路由上加上 mode: 'history', 即可去掉
直接上代码如下所示:
文章来源:https://www.toymoban.com/diary/vue/367.html
//设置路由 const router = new VueRouter({ mode: "history", base: __dirname, routes: [ { path: "/",component: Customers }, { path: "/about",component: About }, { path:"/add",component:Add }, { path:"/customers/:id",component:CustomerDetails }, { path:"/edit/:id",component:Edit } ] })
注:
文章来源地址https://www.toymoban.com/diary/vue/367.html
到此这篇关于如何去掉vue路由中的#号?的文章就介绍到这了,更多相关内容可以在右上角搜索或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!