Parcourir la Source

fix Vuex breadcrumb bug

Unknown il y a 7 ans
Parent
commit
fc146f0ec5
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      src/store/modules/breadcrumb.js

+ 4 - 4
src/store/modules/breadcrumb.js

@@ -4,7 +4,7 @@ const breadcrumb = {
4 4
     visible: {
5 5
       firstLayer: true,
6 6
       secondLayer: false,
7
-      thridLayer: false
7
+      thirdLayer: false
8 8
     }
9 9
   },
10 10
   mutations: {
@@ -14,21 +14,21 @@ const breadcrumb = {
14 14
           state.visible = {
15 15
             firstLayer: true,
16 16
             secondLayer: false,
17
-            thridLayer: false
17
+            thirdLayer: false
18 18
           }
19 19
           break
20 20
         case 2:
21 21
           state.visible = {
22 22
             firstLayer: false,
23 23
             secondLayer: true,
24
-            thridLayer: false
24
+            thirdLayer: false
25 25
           }
26 26
           break
27 27
         case 3:
28 28
           state.visible = {
29 29
             firstLayer: false,
30 30
             secondLayer: false,
31
-            thridLayer: true
31
+            thirdLayer: true
32 32
           }
33 33
           break
34 34
       }