美文网首页
vue路由tags切换缓存页面,通过点击触发刷新页面

vue路由tags切换缓存页面,通过点击触发刷新页面

作者: 而生lhw | 来源:发表于2023-02-15 16:46 被阅读0次
  • 使用场景:
    • 点击页面按钮,刷新跳转指定页面
    • 通过名字获取路由数据 this.$router.resolve({ name: 'Request' }).route
    • const fullPath 定义跳转路径
    • 使用 this.$router.replace 实现跳转传参
this.$store.dispatch("tagsView/delCachedView",  this.$router.resolve({ name: 'Request' }).route).then(() => {
              const fullPath = "/shopping_cart/request";
              this.$nextTick(() => {
                this.$router.replace({
                  path: "/shopping_cart/request",
                  query: {
                    id: "0"
                  },
                });
              });
            });

相关文章

网友评论

      本文标题:vue路由tags切换缓存页面,通过点击触发刷新页面

      本文链接:https://www.haomeiwen.com/subject/pjkekdtx.html