Skip to content

Commit e3273b3

Browse files
committed
docs: fix links
fix #3793
1 parent 4d73be3 commit e3273b3

File tree

13 files changed

+26
-26
lines changed

13 files changed

+26
-26
lines changed

Diff for: docs/fr/guide/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Créer une application monopage avec Vue + Vue Router est vraiment simple. Avec
1010
## HTML
1111

1212
```html
13-
<script src="https://unpkg.com/vue/dist/vue.js"></script>
14-
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
13+
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
14+
<script src="https://unpkg.com/vue-router@3/dist/vue-router.js"></script>
1515

1616
<div id="app">
1717
<h1>Bonjour l'application !</h1>

Diff for: docs/fr/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## Téléchargement direct / CDN
44

5-
[https://unpkg.com/vue-router/dist/vue-router.js](https://unpkg.com/vue-router/dist/vue-router.js)
5+
[https://unpkg.com/vue-router@3/dist/vue-router.js](https://unpkg.com/vue-router@3/dist/vue-router.js)
66

77
<!--email_off-->
8-
[Unpkg.com](https://unpkg.com) fournit des liens CDN basés sur npm. Le lien ci-dessus pointera toujours vers la dernière version sur npm. Vous pouvez aussi utiliser un tag ou une version spécifique via un URL comme `https://unpkg.com/vue-router@2.0.0/dist/vue-router.js`.
8+
[Unpkg.com](https://unpkg.com) fournit des liens CDN basés sur npm. Le lien ci-dessus pointera toujours vers la dernière version sur npm. Vous pouvez aussi utiliser un tag ou une version spécifique via un URL comme `https://unpkg.com/vue-router@3.0.0/dist/vue-router.js`.
99
<!--/email_off-->
1010

1111
Incluez `vue-router` après Vue et l'installation sera automatique :

Diff for: docs/guide/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Creating a Single-page Application with Vue + Vue Router feels natural: with Vue
1515
## HTML
1616

1717
```html
18-
<script src="https://unpkg.com/vue/dist/vue.js"></script>
19-
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
18+
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
19+
<script src="https://unpkg.com/vue-router@3/dist/vue-router.js"></script>
2020

2121
<div id="app">
2222
<h1>Hello App!</h1>

Diff for: docs/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## Direct Download / CDN
44

5-
[https://unpkg.com/vue-router/dist/vue-router.js](https://unpkg.com/vue-router/dist/vue-router.js)
5+
[https://unpkg.com/vue-router@3/dist/vue-router.js](https://unpkg.com/vue-router@3/dist/vue-router.js)
66

77
<!--email_off-->
8-
[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/vue-router@2.0.0/dist/vue-router.js`.
8+
[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/vue-router@3.0.0/dist/vue-router.js`.
99
<!--/email_off-->
1010

1111
Include `vue-router` after Vue and it will install itself automatically:

Diff for: docs/ja/guide/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Vue.js と vue-router を使ったシングルページアプリケーション
1313
## HTML
1414

1515
```html
16-
<script src="https://unpkg.com/vue/dist/vue.js"></script>
17-
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
16+
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
17+
<script src="https://unpkg.com/vue-router@3/dist/vue-router.js"></script>
1818

1919
<div id="app">
2020
<h1>Hello App!</h1>

Diff for: docs/ja/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
### 直接ダウンロード / CDN
44

5-
[https://unpkg.com/vue-router/dist/vue-router.js](https://unpkg.com/vue-router/dist/vue-router.js)
5+
[https://unpkg.com/vue-router@3/dist/vue-router.js](https://unpkg.com/vue-router@3/dist/vue-router.js)
66

77
<!--email_off-->
8-
[Unpkg.com](https://unpkg.com) は npm ベースの CDN リンクです。 上記のリンクは常に NPM 上の最新のリリースを指します。 `https://unpkg.com/vue-router@2.0.0/dist/vue-router.js` のような URL を利用することで特定のバージョンやタグを指定することもできます。
8+
[Unpkg.com](https://unpkg.com) は npm ベースの CDN リンクです。 上記のリンクは常に NPM 上の最新のリリースを指します。 `https://unpkg.com/vue-router@3.0.0/dist/vue-router.js` のような URL を利用することで特定のバージョンやタグを指定することもできます。
99
<!--/email_off-->
1010

1111
Vue の後に `vue-router` を含めると自動的にインストールされます。

Diff for: docs/kr/guide/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Vue와 Vue 라우터를 이용해 싱글 페이지 앱을 만드는 것은 매
1313
## HTML
1414

1515
``` html
16-
<script src="https://unpkg.com/vue/dist/vue.js"></script>
17-
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
16+
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
17+
<script src="https://unpkg.com/vue-router@3/dist/vue-router.js"></script>
1818

1919
<div id="app">
2020
<h1>Hello App!</h1>

Diff for: docs/kr/guide/essentials/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Vue.js와 vue-router로 단일 페이지 애플리케이션을 만드는 것은
99
### HTML
1010

1111
``` html
12-
<script src="https://unpkg.com/vue/dist/vue.js"></script>
13-
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
12+
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
13+
<script src="https://unpkg.com/vue-router@3/dist/vue-router.js"></script>
1414

1515
<div id="app">
1616
<h1>Hello App!</h1>

Diff for: docs/kr/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
### 직접 다운로드 / CDN
44

5-
[https://unpkg.com/vue-router/dist/vue-router.js](https://unpkg.com/vue-router/dist/vue-router.js)
5+
[https://unpkg.com/vue-router@3/dist/vue-router.js](https://unpkg.com/vue-router@3/dist/vue-router.js)
66

77
<!--email_off-->
8-
[Unpkg.com](https://unpkg.com)은 NPM 기반 CDN 링크를 제공합니다. 위의 링크는 항상 NPM의 최신 릴리스를 가리킵니다. `https://unpkg.com/vue-router@2.0.0/dist/vue-router.js`와 같이 URL을 통해 특정 버전 / 태그를 사용할 수도 있습니다.
8+
[Unpkg.com](https://unpkg.com)은 NPM 기반 CDN 링크를 제공합니다. 위의 링크는 항상 NPM의 최신 릴리스를 가리킵니다. `https://unpkg.com/vue-router@3.0.0/dist/vue-router.js`와 같이 URL을 통해 특정 버전 / 태그를 사용할 수도 있습니다.
99
<!--/email_off-->
1010

1111
Vue 다음에 `vue-router`를 포함하면 자동으로 설치됩니다.

Diff for: docs/ru/guide/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
## HTML
1212

1313
```html
14-
<script src="https://unpkg.com/vue/dist/vue.js"></script>
15-
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
14+
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
15+
<script src="https://unpkg.com/vue-router@3/dist/vue-router.js"></script>
1616

1717
<div id="app">
1818
<h1>Первое приложение!</h1>

Diff for: docs/ru/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## Скачивание напрямую / CDN
44

5-
[https://unpkg.com/vue-router/dist/vue-router.js](https://unpkg.com/vue-router/dist/vue-router.js)
5+
[https://unpkg.com/vue-router@3/dist/vue-router.js](https://unpkg.com/vue-router@3/dist/vue-router.js)
66

77
<!--email_off-->
8-
[Unpkg.com](https://unpkg.com) предоставляет CDN-ссылки для NPM-пакетов. Ссылка выше всегда указывает на самую последнюю версию Vue-router на NPM. Вы можете также использовать конкретную версию, используя ссылки вида `https://unpkg.com/vue-router@2.0.0/dist/vue-router.js`.
8+
[Unpkg.com](https://unpkg.com) предоставляет CDN-ссылки для NPM-пакетов. Ссылка выше всегда указывает на самую последнюю версию Vue-router на NPM. Вы можете также использовать конкретную версию, используя ссылки вида `https://unpkg.com/vue-router@3.0.0/dist/vue-router.js`.
99
<!--/email_off-->
1010

1111
Подключите `vue-router` после Vue, и установка произойдёт автоматически:

Diff for: docs/zh/guide/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
## HTML
1414

1515
```html
16-
<script src="https://unpkg.com/vue/dist/vue.js"></script>
17-
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
16+
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
17+
<script src="https://unpkg.com/vue-router@3/dist/vue-router.js"></script>
1818

1919
<div id="app">
2020
<h1>Hello App!</h1>

Diff for: docs/zh/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
### 直接下载 / CDN
44

5-
[https://unpkg.com/vue-router/dist/vue-router.js](https://unpkg.com/vue-router/dist/vue-router.js)
5+
[https://unpkg.com/vue-router@3/dist/vue-router.js](https://unpkg.com/vue-router@3/dist/vue-router.js)
66

77
<!--email_off-->
8-
[Unpkg.com](https://unpkg.com) 提供了基于 NPM 的 CDN 链接。上面的链接会一直指向在 NPM 发布的最新版本。你也可以像 `https://unpkg.com/vue-router@2.0.0/dist/vue-router.js` 这样指定 版本号 或者 Tag。
8+
[Unpkg.com](https://unpkg.com) 提供了基于 NPM 的 CDN 链接。上面的链接会一直指向在 NPM 发布的最新版本。你也可以像 `https://unpkg.com/vue-router@3.0.0/dist/vue-router.js` 这样指定 版本号 或者 Tag。
99
<!--/email_off-->
1010

1111
在 Vue 后面加载 `vue-router`,它会自动安装的:

0 commit comments

Comments
 (0)