소스 검색

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 년 전
부모
커밋
2dfab03a7a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 {