删除 Vue Router 中的尾部斜杠

问题描述 投票:0回答:1
vue.js vue-router
1个回答
0
投票

在 Vue-Router v4 中,您可以使用

strict
选项:

const router = createRouter({
  history: createWebHistory(),
  routes: [
      ...
  ],
  strict: true, // applies to all routes
})

查看敏感和严格的路线选项

© www.soinside.com 2019 - 2024. All rights reserved.