forked from vuejs/vuex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
include @next in installation instructions for now
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
### Direct Download / CDN | ||
|
||
[https://unpkg.com/vuex](https://unpkg.com/vuex) | ||
[https://unpkg.com/vuex@next](https://unpkg.com/vuex@next) | ||
|
||
[Unpkg.com](https://unpkg.com) provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like `https://unpkg.com/[email protected]`. | ||
|
||
|
@@ -16,7 +16,7 @@ Include `vuex` after Vue and it will install itself automatically: | |
### NPM | ||
|
||
``` bash | ||
npm install vuex | ||
npm install vuex@next | ||
``` | ||
|
||
When used with a module system, you must explicitly install the router via `Vue.use()`: | ||
|