We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1de48 commit 017b973Copy full SHA for 017b973
README.md
@@ -70,17 +70,17 @@ Place the following code in your project to allow `this.$store` to be typed corr
70
```ts
71
// vuex-shim.d.ts
72
73
-import { Store } from "vuex";
74
-import { ComponentCustomProperties } from "vue";
+import { ComponentCustomProperties } from 'vue'
+import { Store } from 'vuex'
75
76
-declare module "@vue/runtime-core" {
+declare module '@vue/runtime-core' {
77
// Declare your own store states.
78
interface State {
79
count: number
80
}
81
82
interface ComponentCustomProperties {
83
- $store: Store<State>;
+ $store: Store<State>
84
85
86
```
0 commit comments