Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit db5caca

Browse files
authoredApr 12, 2018
Merge pull request #3 from andygrunwald/patch-4
Fix typo: bulid => build
2 parents 9d01c09 + 5822db0 commit db5caca

File tree

1 file changed

+3
-3
lines changed
  • tutorials/1-webpack-vue.js-router-store-firebase

1 file changed

+3
-3
lines changed
 

‎tutorials/1-webpack-vue.js-router-store-firebase/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Preface [ 中文版本 ](./README.cn.md)
44

5-
In this chapter, we will bulid another edition of Vue-HN in which we would start to make this project more modularized and maintainable. With some very basic configurations of webpack, we would make this edition of the project work. In order to bulid the whole project step by step, we still did not consider server, SSR(server-side-render), cache and so on in this edition.
5+
In this chapter, we will build another edition of Vue-HN in which we would start to make this project more modularized and maintainable. With some very basic configurations of webpack, we would make this edition of the project work. In order to build the whole project step by step, we still did not consider server, SSR(server-side-render), cache and so on in this edition.
66
So, the following animation screenshot would show us the basic functions in this edition and some simple deconstruction of the project.
77

88
<p align="center">
@@ -31,7 +31,7 @@ In order to get a smoothly process, you should acquire some basic understandings
3131
It seems too many packages you should get to learn when you just get a glimpse of the list. Don't get afriad because all you need to know about these packages is what are they for and how to config them. Believe me, it is pretty simple!
3232

3333
## Process
34-
There are several important steps to bulid this edition, every step would be introduced briefly in the following part.
34+
There are several important steps to build this edition, every step would be introduced briefly in the following part.
3535

3636
### Step 1
3737
**Deconstruct the project.** To be honst, I should have written this step in the previous edition. When we start a project, inevitablely we should have a plan in our mind about how the project works, what kind of style the pages have and so on.
@@ -49,7 +49,7 @@ And we can know that this project is made up with several views and each of the
4949

5050

5151
### Step 3
52-
**Bulid components and views.** Bulid components first, and then use components to bulid views. Transfer data between them with "props" option. Stucture of the project folder would like:
52+
**Build components and views.** Build components first, and then use components to build views. Transfer data between them with "props" option. Stucture of the project folder would like:
5353
```
5454
| -- src
5555
| | -- store

0 commit comments

Comments
 (0)
Please sign in to comment.