this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => { this.$router.replace({ path: '/setting/ModelSetting' }); });
时间: 2024-03-15 12:43:08 浏览: 118
浅谈Vuex的this.$store.commit和在Vue项目中引用公共方法
这是一个 Vue.js 中使用 Vuex 状态管理的代码片段,其中调用了 Vuex 中的 `dispatch` 方法,触发了 `tagsView/delView` 这个 action。在 action 中执行了删除路由视图的操作,并且在删除成功后,使用 `this.$router.replace` 方法跳转到 `path: '/setting/ModelSetting'` 这个页面。
阅读全文