vue-element-admin中标签页的关闭

在一个页面中用:

this.$router.push({path:'/company/person', query: param})

打开了一个新标签页,在person中要关闭当前页,写了

this.$store.dispatch("company/person", this.$route);

暴错:[vuex] unknown action type: company/person, 哪第一个参数该写什么

阅读 5.1k
1 个回答

这个
this.$store.dispatch("tagsView/delView", this.$route)

推荐问题