vue,router路由传值问题,引用官方推荐
参考贴https://blog.csdn.net/m0_57033755/article/details/129927829
根据官方文档的更新日志,建议使用state传值
官方文档更新日志
实际的console结果
传值
router.push({ name: `KnowledgeDetail`, state: { params } });
接收值
const historyParams = history.state.params
console.log('history.state: ', history.state);
其他方式备注:
1.query方式,会在url中暴露
2.params方式,会在url中暴露
3.参数存在pina或vuex中
4.动态路由方式
5.使用meta传值