diff --git a/src/layout/components/AppMain.vue b/src/layout/components/AppMain.vue index 2986abec..64240e12 100644 --- a/src/layout/components/AppMain.vue +++ b/src/layout/components/AppMain.vue @@ -17,7 +17,6 @@ export default { }, computed: { cachedViews() { - console.log('123', this.$store.state.tagsView.cachedViews) return this.$store.state.tagsView.cachedViews }, key() { diff --git a/src/store/modules/tagsView.js b/src/store/modules/tagsView.js index 53151a0b..6ca735c0 100644 --- a/src/store/modules/tagsView.js +++ b/src/store/modules/tagsView.js @@ -5,10 +5,7 @@ const state = { const mutations = { ADD_VISITED_VIEW: (state, view) => { - console.log(view) if (state.visitedViews.some(v => v.fullPath === view.fullPath)) return - console.log(3) - console.log('添加新页签') state.visitedViews.push( Object.assign({}, view, { title: view.meta.title || 'no-name'