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

Commit e23dda9

Browse files
authored
docs: (ru) fix links (#1181)
Co-authored-by: Alex Sokolov <[email protected]>
1 parent df8caae commit e23dda9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

vuepress/ru/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
## Загрузка файла / CDN
88

9-
<https://unpkg.com/vue-i18n/dist/vue-i18n>
9+
<https://unpkg.com/vue-i18n@8>
1010

1111
Сервис [unpkg.com](https://unpkg.com) предоставляет CDN-ссылки на основе NPM-пакетов. Ссылка выше будет всегда указывать на последнюю версию на NPM. Можно использовать конкретную версию или тег с помощью URL следующего вида <https://unpkg.com/[email protected]/dist/vue-i18n.js>
1212

1313
При подключении vue-i18n после Vue плагин установит себя автоматически:
1414

1515
```html
1616
<script src="https://unpkg.com/vue/dist/vue.js"></script>
17-
<script src="https://unpkg.com/vue-i18n/dist/vue-i18n.js"></script>
17+
<script src="https://unpkg.com/vue-i18n@8"></script>
1818
```
1919

2020
## NPM

vuepress/ru/started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
```html
1010
<script src="https://unpkg.com/vue/dist/vue.js"></script>
11-
<script src="https://unpkg.com/vue-i18n/dist/vue-i18n.js"></script>
11+
<script src="https://unpkg.com/vue-i18n@8"></script>
1212

1313
<div id="app">
1414
<p>{{ $t("message.hello") }}</p>

0 commit comments

Comments
 (0)