PanJiaChen / vue-element-admin

:tada: A magical vue admin https://panjiachen.github.io/vue-element-admin
MIT License
87.96k stars 30.47k forks source link

tagViews刷新`首页`标签消失,所有标签关闭首页标签展示 #2717

Open qq4311949 opened 5 years ago

qq4311949 commented 5 years ago

我这基于vue-element-template进行后台开发,从vue-element-admin获取tagViews组件, 刷新前: image 刷新后: image 关闭所有标签后: image

sunpu007 commented 5 years ago

可以看下你的tagViews生成和监听路由变化,首页在tagViews列表中是写死的,从你的截图中来看,初步断定你的tagViews没有一个初始值,是根据路由的跳转来动态添加生成的

Raywh commented 4 years ago

我这基于vue-element-template进行后台开发,从vue-element-admin获取tagViews组件, 刷新前: image 刷新后: image 关闭所有标签后: image

请问一下,搞定了没,我的也是这种问题

Keingran commented 4 years ago

在src\layout\components\TagsView\index.vue下修改 computed: { visitedViews() { return this.$store.state.tagsView.visitedViews }, routes() { // return this.$store.state.permission.routes return this.$router.options.routes } },