From 9c73f6b310148f5f0482e1b0a85c5256b017f325 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=B7=8D?= Date: Thu, 13 Aug 2020 10:38:22 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A5=E5=BF=97=20delete?= =?UTF-8?q?=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/components/AppMain.vue | 1 - src/store/modules/tagsView.js | 3 --- 2 files changed, 4 deletions(-) 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'