Skip to content

Commit 017b973

Browse files
committed
chore: fix styling in README
1 parent bf1de48 commit 017b973

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,17 @@ Place the following code in your project to allow `this.$store` to be typed corr
7070
```ts
7171
// vuex-shim.d.ts
7272

73-
import { Store } from "vuex";
74-
import { ComponentCustomProperties } from "vue";
73+
import { ComponentCustomProperties } from 'vue'
74+
import { Store } from 'vuex'
7575

76-
declare module "@vue/runtime-core" {
76+
declare module '@vue/runtime-core' {
7777
// Declare your own store states.
7878
interface State {
7979
count: number
8080
}
8181

8282
interface ComponentCustomProperties {
83-
$store: Store<State>;
83+
$store: Store<State>
8484
}
8585
}
8686
```

0 commit comments

Comments
 (0)