vue路由与微信分享相关处理

背景:hash路由,微信将#之后截断了。。不能到指定页面。

1.路由模式用history

new Router({
  mode: 'history',
  routes: [
    {
     ...

2.配置服务器

https://router.vuejs.org/zh-cn/essentials/history-mode.html

相关推荐