refreshSelectedTag(view) { this.$store.dispatch('tagsView/delCachedView', view).then(() => { const { fullPath } = view; this.$nextTick(() => { this.$router.replace({ path: '/redirect' + fullPath, }); }); }); },
时间: 2024-04-07 16:31:39 浏览: 106
最新版vue前端面试题20230321整理
根据代码片段中的内容,它是一个Vue.js组件中的方法,用于刷新选中的标签并重新导航到该标签对应的路由。具体而言,该方法使用Vuex的Action 'tagsView/delCachedView'从缓存的标签视图中删除给定的视图,然后使用Vue.js的$router.replace方法重新导航到完整路径(fullPath)的重定向路由('/redirect' + fullPath)。
阅读全文