Browse Source

fix: fixed error action name (#339)

PLAsusu 5 years ago
parent
commit
b2fe1a22e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/layout/index.vue

+ 1 - 1
src/layout/index.vue

@@ -44,7 +44,7 @@ export default {
44 44
   },
45 45
   methods: {
46 46
     handleClickOutside() {
47
-      this.$store.dispatch('CloseSideBar', { withoutAnimation: false })
47
+      this.$store.dispatch('app/closeSideBar', { withoutAnimation: false })
48 48
     }
49 49
   }
50 50
 }