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 1111 - [ Actions] ( actions.md )
1212- [ Data Flow] ( data-flow.md )
1313- [ Application Structure] ( structure.md )
14- - [ Plugins] ( middlewares .md)
14+ - [ Plugins] ( plugins .md)
1515- [ Strict Mode] ( strict.md )
1616- [ Form Handling] ( forms.md )
1717- [ Testing] ( testing.md )
Original file line number Diff line number Diff line change @@ -101,3 +101,13 @@ const store = new Vuex.Store({ ...options })
101101- **hotUpdate (newOptions : Object )**
102102
103103 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