Bläddra i källkod

Changing example filename in tutorial doc (#196)

The rest of the page used Increment.vue, but this one line uses IncrementButton.vue when referring to the same file
Czachur 9 år sedan
förälder
incheckning
2dfab03a7a
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      docs/en/tutorial.md

+ 1 - 1
docs/en/tutorial.md

@@ -121,7 +121,7 @@ Edit `components/App.vue` and add the store.
 
 ```js
 import Display from './Display.vue'
-import Increment from './IncrementButton.vue'
+import Increment from './Increment.vue'
 import store from '../vuex/store' // import the store we just created
 
 export default {