Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.

Commit aa92b33

Browse files
committed
📝 docs(README): update installation section
1 parent 2b0dc09 commit aa92b33

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,16 @@ jsdelivr
2424

2525
## NPM
2626

27-
```shell
28-
$ npm install vue-i18n
29-
```
27+
### stable version
28+
29+
$ npm install vue-i18n
30+
31+
### development version
32+
33+
$ git clone https://github.com/kazupon/vue-i18n node_modules/vue-i18n
34+
$ cd node_modules/vue-i18n
35+
$ npm install
36+
$ npm run build
3037

3138
When used in CommonJS, you must explicitly install the router via Vue.use():
3239

@@ -41,6 +48,8 @@ Vue.config.lang = 'ja'
4148
Vue.locale('ja', { ... })
4249
```
4350

51+
You don't need to do this when using the standalone build, as it installs itself automatically.
52+
4453
# Usage
4554

4655
```javascript

0 commit comments

Comments
 (0)