我使用vue-router构建了一个菜单,该菜单可加载同一组件的多个变体。该组件带有一个标题,使其可以呈现正确的H1。在访问了此页面的链接(例如GET:supportItems / 1)之后,后退按钮不会重新填充SupportItems组件上的参数。
<router-link :to="{ name: 'SupportItems', params: { title: 'Active Issues' }}">Active Issues</router-link>
流程如下:索引-> RouterLink('SupportItems',params)-> Routerlink('SupportItems / 1')->按下背景键-> RouterLink('SupportItems,!NO PARAMS!)
是否可以在不将状态保存到Vuex的情况下将参数与相关历史项链接起来? VueRouter模式应设置为“历史”。