Skip to content

Add yarn-way installation docs Vuex [all langs] #505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Dec 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/en/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ Include `vuex` after Vue and it will install itself automatically:
npm install vuex
```

### Yarn

``` bash
yarn add vuex
```

When used with a module system, you must explicitly install Vuex via `Vue.use()`:

``` js
Expand Down
6 changes: 6 additions & 0 deletions docs/fr/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ Incluez `vuex` après Vue et l'installation sera automatique :
npm install vuex
```

### Yarn

``` bash
yarn add vuex
```

Lorsque vous utilisez un système de modules, vous devez explicitement installer le router via `Vue.use()`:

``` js
Expand Down
6 changes: 6 additions & 0 deletions docs/ja/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ Vue のあとで `vuex` を取り込むと自動的に Vuex が導入されま
npm install vuex
```

### Yarn

``` bash
yarn add vuex
```

モジュールシステムで利用される場合、 `Vue.use()` によって Vuex を明示的に導入する必要があります:

``` js
Expand Down
6 changes: 6 additions & 0 deletions docs/ru/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
npm install vuex
```

### Yarn

``` bash
yarn add vuex
```

Если вы используете модули, установите Vuex явным образом командой `Vue.use()`:

``` js
Expand Down
6 changes: 6 additions & 0 deletions docs/zh-cn/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
npm install vuex
```

### Yarn

``` bash
yarn add vuex
```

在一个模块化的打包系统中,您必须显式地通过 `Vue.use()` 来安装 Vuex:

``` js
Expand Down