摘要: 安装 npm install vue-router --save 路由映射配置 创建router文件夹 新建index.js vue实例中挂载router 使用路由 <router-link></router-link> <router-view></router-view> 默认首页(重定向) r 阅读全文
posted @ 2022-11-16 22:40 Mr_sven 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 通过以下可以改变浏览器中的url 跳转到home路径下: location.hash='home' 跳转到about路径下: history.pushState({},'','about') 向上回退: history.back() 向前进: history.forward() 使用test路径替换 阅读全文
posted @ 2022-11-16 20:57 Mr_sven 阅读(14) 评论(0) 推荐(0) 编辑