File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 11
11
- [ Actions] ( actions.md )
12
12
- [ Data Flow] ( data-flow.md )
13
13
- [ Application Structure] ( structure.md )
14
- - [ Plugins] ( middlewares .md)
14
+ - [ Plugins] ( plugins .md)
15
15
- [ Strict Mode] ( strict.md )
16
16
- [ Form Handling] ( forms.md )
17
17
- [ Testing] ( testing.md )
Original file line number Diff line number Diff line change @@ -101,3 +101,13 @@ const store = new Vuex.Store({ ...options })
101
101
- **hotUpdate (newOptions : Object )**
102
102
103
103
Hot swap new actions and mutations. [Details](hot-reload.md)
104
+
105
+ - **on(event: String, cb: Function)**
106
+
107
+ - **once(event: String, cb: Function)**
108
+
109
+ - **off([event: String, cb: Function])**
110
+
111
+ - **emit(event: String, ...args)**
112
+
113
+ Same event interface as found on a Vue instance. The only event the store emits is `mutation` (see [Plugins](plugins.md)).
You can’t perform that action at this time.
0 commit comments