Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit c9f7aa1

Browse files
authored
doc(vuex): fix typo
Ensure that the second example imports the correct function. Before this change, it used to point to an unused `event` method.
1 parent ff38a02 commit c9f7aa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/vuex.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Start using vue-analytics API in your store
2929
// store.js
3030
import Vue from 'vue'
3131
import Vuex from 'vuex'
32-
import { page } from 'vue-analytics'
32+
import { event } from 'vue-analytics'
3333

3434
Vue.use(Vuex)
3535

@@ -49,4 +49,4 @@ export default new Vuex.Store({
4949
}
5050
}
5151
})
52-
```
52+
```

0 commit comments

Comments
 (0)