From b2fe1a22e14e9d7055ca43b926a994e27553eeb4 Mon Sep 17 00:00:00 2001 From: PLAsusu <35716280+plasusu@users.noreply.github.com> Date: Tue, 23 Apr 2019 09:50:47 +0800 Subject: [PATCH] fix: fixed error action name (#339) --- src/layout/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/index.vue b/src/layout/index.vue index aa67907..db22a7b 100644 --- a/src/layout/index.vue +++ b/src/layout/index.vue @@ -44,7 +44,7 @@ export default { }, methods: { handleClickOutside() { - this.$store.dispatch('CloseSideBar', { withoutAnimation: false }) + this.$store.dispatch('app/closeSideBar', { withoutAnimation: false }) } } }