Explorar o código

chore: fix styling in README

Kia Ishii %!s(int64=5) %!d(string=hai) anos
pai
achega
017b973253
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      README.md

+ 4 - 4
README.md

@@ -70,17 +70,17 @@ Place the following code in your project to allow `this.$store` to be typed corr
 ```ts
 // vuex-shim.d.ts
 
-import { Store } from "vuex";
-import { ComponentCustomProperties } from "vue";
+import { ComponentCustomProperties } from 'vue'
+import { Store } from 'vuex'
 
-declare module "@vue/runtime-core" {
+declare module '@vue/runtime-core' {
   // Declare your own store states.
   interface State {
     count: number
   }
 
   interface ComponentCustomProperties {
-    $store: Store<State>;
+    $store: Store<State>
   }
 }
 ```