Skip to content

Commit ec85c6d

Browse files
iskanderbroereSébastien Chopin
authored and
Sébastien Chopin
committed
update vue-meta links (nuxt#1372)
1 parent 4488f2c commit ec85c6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+84
-84
lines changed

de/api/configuration-head.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = {
2222
}
2323
```
2424

25-
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
25+
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
2626

2727
<div class="Alert Alert--teal">
2828

de/api/pages-head.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Nuxt.js uses vue-meta to update the headers and HTML attributes of
55

66
# The head Method
77

8-
> Nuxt.js uses [vue-meta](https://github.com/declandewet/vue-meta) to update the `headers` and `html attributes` of your application.
8+
> Nuxt.js uses [vue-meta](https://github.com/nuxt/vue-meta) to update the `headers` and `html attributes` of your application.
99
1010
- **Type:** `Object` or `Function`
1111

@@ -39,6 +39,6 @@ export default {
3939

4040
<div class="Alert">
4141

42-
To avoid any duplication when used in child component, please give a unique identifier with the `hid` key, please [read more about it](https://github.com/declandewet/vue-meta#lists-of-tags).
42+
To avoid any duplication when used in child component, please give a unique identifier with the `hid` key, please [read more about it](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
4343

4444
</div>

de/faq/duplicated-meta-tags.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description: Duplicated Meta tags with Nuxt.js?
55

66
# Duplicated Meta tags?
77

8-
This is a "feature" of [vue-meta](https://github.com/declandewet/vue-meta), please take a look at the [documentation of head elements](/guide/views#html-head).
8+
This is a "feature" of [vue-meta](https://github.com/nuxt/vue-meta), please take a look at the [documentation of head elements](/guide/views#html-head).
99

10-
> To avoid any duplication when used in child component, please give an unique identifier with the `hid` key, please [read more](https://github.com/declandewet/vue-meta#lists-of-tags) about it.
10+
> To avoid any duplication when used in child component, please give an unique identifier with the `hid` key, please [read more](https://vue-meta.nuxtjs.org/api/#tagidkeyname) about it.
1111
1212
For the meta description, you need to add the unique identifier `hid` so vue-meta will know that it has to overwrite the default tag.
1313

de/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Nuxt.js includes the following to create a rich web application development:
3030
- [Vue Router](https://router.vuejs.org/en/)
3131
- [Vuex](https://vuex.vuejs.org/en/) (included only when using the [store option](/guide/vuex-store))
3232
- [Vue Server Renderer](https://ssr.vuejs.org/en/) (excluded when using [`mode: 'spa'`](/api/configuration-mode))
33-
- [vue-meta](https://github.com/declandewet/vue-meta)
33+
- [vue-meta](https://github.com/nuxt/vue-meta)
3434

3535
A total of only **57kB min+gzip** (53kB with Vuex).
3636

de/guide/views.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ More information about the pages properties usage: [API Pages](/api)
167167

168168
## HTML Head
169169

170-
Nuxt.js uses [vue-meta](https://github.com/declandewet/vue-meta) to update the `headers` and `html attributes` of your application.
170+
Nuxt.js uses [vue-meta](https://github.com/nuxt/vue-meta) to update the `headers` and `html attributes` of your application.
171171

172172
Nuxt.js configures `vue-meta` with these options:
173173

@@ -198,7 +198,7 @@ head: {
198198
}
199199
```
200200

201-
To learn more about the options available for `head`, take a look at [vue-meta documentation](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
201+
To learn more about the options available for `head`, take a look at [vue-meta documentation](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
202202

203203
More information about the `head` method: [API Configuration `head`](/api/configuration-head).
204204

@@ -208,6 +208,6 @@ More information about the head method: [API Pages `head`](/api/pages-head).
208208

209209
<div class="Alert">
210210

211-
To avoid any duplication when used in child component, please give a unique identifier with the <code>hid</code> key. [Learn more](https://github.com/declandewet/vue-meta#lists-of-tags).
211+
To avoid any duplication when used in child component, please give a unique identifier with the <code>hid</code> key. [Learn more](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
212212

213213
</div>

en/api/configuration-head.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ export default {
2525
}
2626
```
2727

28-
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
28+
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
2929

3030
You can also use `head` in your components and access to the component data through `this` ([read more](/api/pages-head)).
3131

3232
<div class="Alert Alert--teal">
3333

34-
<b>Info:</b> To avoid duplicated meta tags when used in child component, set up an unique identifier with the `hid` key for your meta elements ([read more](https://github.com/declandewet/vue-meta#lists-of-tags)).
34+
<b>Info:</b> To avoid duplicated meta tags when used in child component, set up an unique identifier with the `hid` key for your meta elements ([read more](https://vue-meta.nuxtjs.org/api/#tagidkeyname)).
3535

3636
</div>

en/api/pages-head.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Nuxt.js uses vue-meta to update the headers and HTML attributes of
55

66
# The head Method
77

8-
> Nuxt.js uses [vue-meta](https://github.com/declandewet/vue-meta) to update the `headers` and `html attributes` of your application.
8+
> Nuxt.js uses [vue-meta](https://github.com/nuxt/vue-meta) to update the `headers` and `html attributes` of your application.
99
1010
- **Type:** `Object` or `Function`
1111

@@ -40,6 +40,6 @@ export default {
4040

4141
<div class="Alert Alert--teal">
4242

43-
<b>Info:</b> To avoid duplicated meta tags when used in child component, set up an unique identifier with the `hid` key for your meta elements ([read more](https://github.com/declandewet/vue-meta#lists-of-tags)).
43+
<b>Info:</b> To avoid duplicated meta tags when used in child component, set up an unique identifier with the `hid` key for your meta elements ([read more](https://vue-meta.nuxtjs.org/api/#tagidkeyname)).
4444

4545
</div>

en/faq/duplicated-meta-tags.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ description: Duplicated Meta tags with Nuxt.js?
55

66
# Duplicated Meta tags?
77

8-
This is a "feature" of [vue-meta](https://github.com/declandewet/vue-meta), please take a look at the [documentation of head elements](/guide/views#html-head).
8+
This is a "feature" of [vue-meta](https://github.com/nuxt/vue-meta), please take a look at the [documentation of head elements](/guide/views#html-head).
99

1010
<div class="Alert">
1111

12-
To avoid any duplication when used in child component, please give a unique identifier with the <code>hid</code> key. [Learn more](https://github.com/declandewet/vue-meta#lists-of-tags).
12+
To avoid any duplication when used in child component, please give a unique identifier with the <code>hid</code> key. [Learn more](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
1313

1414
</div>
1515

en/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Nuxt.js includes the following to create a rich web application development:
3030
- [Vue Router](https://router.vuejs.org/en/)
3131
- [Vuex](https://vuex.vuejs.org/en/) (included only when using the [store option](/guide/vuex-store))
3232
- [Vue Server Renderer](https://ssr.vuejs.org/en/) (excluded when using [`mode: 'spa'`](/api/configuration-mode))
33-
- [vue-meta](https://github.com/declandewet/vue-meta)
33+
- [vue-meta](https://github.com/nuxt/vue-meta)
3434

3535
A total of only **57kB min+gzip** (60kB with Vuex).
3636

en/guide/views.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ More information about the pages properties usage: [API Pages](/api)
198198

199199
## HTML Head
200200

201-
Nuxt.js uses [vue-meta](https://github.com/declandewet/vue-meta) to update the `document head` and `meta attributes` of your application.
201+
Nuxt.js uses [vue-meta](https://github.com/nuxt/vue-meta) to update the `document head` and `meta attributes` of your application.
202202

203203
The `vue-meta` Nuxt.js uses can be found [on GitHub](https://github.com/nuxt/nuxt.js/blob/dev/packages/vue-app/template/index.js#L29-L35)
204204

@@ -227,7 +227,7 @@ head: {
227227
}
228228
```
229229

230-
To learn more about the options available for `head`, take a look at [vue-meta documentation](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
230+
To learn more about the options available for `head`, take a look at [vue-meta documentation](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
231231

232232
More information about the `head` method are available on the [API Configuration `head`](/api/configuration-head) page.
233233

es/api/configuration-head.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = {
2222
}
2323
```
2424

25-
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
25+
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
2626

2727
<div class="Alert Alert--teal">
2828

es/api/pages-head.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Nuxt.js uses vue-meta to update the `headers` and `html attributes`
55

66
# The head Method
77

8-
> Nuxt.js uses [vue-meta](https://github.com/declandewet/vue-meta) to update the `headers` and `html attributes` of your application.
8+
> Nuxt.js uses [vue-meta](https://github.com/nuxt/vue-meta) to update the `headers` and `html attributes` of your application.
99
1010
- **Type:** `Object` or `Function`
1111

@@ -39,6 +39,6 @@ export default {
3939

4040
<div class="Alert">
4141

42-
To avoid any duplication when used in child component, please give a unique identifier with the `hid` key, please [read more about it](https://github.com/declandewet/vue-meta#lists-of-tags).
42+
To avoid any duplication when used in child component, please give a unique identifier with the `hid` key, please [read more about it](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
4343

4444
</div>

es/faq/duplicated-meta-tags.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description: Duplicated Meta tags with Nuxt.js?
55

66
# Duplicated Meta tags?
77

8-
This is a "feature" of [vue-meta](https://github.com/declandewet/vue-meta), please take a look at the [documentation of head elements](/guide/views#html-head).
8+
This is a "feature" of [vue-meta](https://github.com/nuxt/vue-meta), please take a look at the [documentation of head elements](/guide/views#html-head).
99

10-
> To avoid any duplication when used in child component, please give a unique identifier with the hid key, please [read more](https://github.com/declandewet/vue-meta#lists-of-tags) about it.
10+
> To avoid any duplication when used in child component, please give a unique identifier with the hid key, please [read more](https://vue-meta.nuxtjs.org/api/#tagidkeyname) about it.
1111
1212
For the meta description, you need to add the unique identifier `hid` so vue-meta will know that it has to overwrite the default tag.
1313

es/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Nuxt.js incluye lo siguientepara crear un desarrollo de aplicaciones web avanzad
3030
- [Vue 2](https://github.com/vuejs/vue)
3131
- [Vue-Router](https://github.com/vuejs/vue-router)
3232
- [Vuex](https://github.com/vuejs/vuex) (Solo se incluye cuando se utiliza [La opción store](/guide/vuex-store))
33-
- [Vue-Meta](https://github.com/declandewet/vue-meta)
33+
- [Vue-Meta](https://github.com/nuxt/vue-meta)
3434

3535
Un total de solo **28kb min+gzip** (31kb con vuex).
3636

es/guide/views.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ More information about the pages properties usage: [API Pages](/api)
171171

172172
## HTML Head
173173

174-
Nuxt.js uses [vue-meta](https://github.com/declandewet/vue-meta) to update the `headers` and `html attributes` of your application.
174+
Nuxt.js uses [vue-meta](https://github.com/nuxt/vue-meta) to update the `headers` and `html attributes` of your application.
175175

176176
Nuxt.js configures `vue-meta` with these options:
177177
```js
@@ -200,7 +200,7 @@ head: {
200200
}
201201
```
202202

203-
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
203+
To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
204204

205205
More information about the head method: [API Configuration head](/api/configuration-head)
206206

@@ -210,6 +210,6 @@ More information about the head method: [API Pages head](/api/pages-head)
210210

211211
<div class="Alert">
212212

213-
To avoid any duplication when used in child component, please give a unique identifier with the `hid` key, please [read more about it](https://github.com/declandewet/vue-meta#lists-of-tags).
213+
To avoid any duplication when used in child component, please give a unique identifier with the `hid` key, please [read more about it](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
214214

215215
</div>

fr/api/configuration-head.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module.exports = {
2222
}
2323
```
2424

25-
<p style="width: 294px;position: fixed; top : 64px; right: 4px;" class="Alert Alert--orange"><strong>⚠Cette page est actuellement en cours de traduction française. Vous pouvez repasser plus tard ou <a href="https://github.com/vuejs-fr/nuxt" target="_blank">participer à la traduction</a> de celle-ci dès maintenant !</strong></p><p>To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).</p>
25+
<p style="width: 294px;position: fixed; top : 64px; right: 4px;" class="Alert Alert--orange"><strong>⚠Cette page est actuellement en cours de traduction française. Vous pouvez repasser plus tard ou <a href="https://github.com/vuejs-fr/nuxt" target="_blank">participer à la traduction</a> de celle-ci dès maintenant !</strong></p><p>To know the list of options you can give to `head`, take a look at [vue-meta documentation](https://vue-meta.nuxtjs.org/api/#metainfo-properties).</p>
2626

2727
<div class="Alert Alert--teal">
2828

fr/api/pages-head.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Nuxt.js utilise vue-meta pour mettre à jour les entêtes et les at
55

66
# La méthode head
77

8-
> Nuxt.js utilise [vue-meta](https://github.com/declandewet/vue-meta) pour mettre à jour les entêtes et les attributs HTML de votre application.
8+
> Nuxt.js utilise [vue-meta](https://github.com/nuxt/vue-meta) pour mettre à jour les entêtes et les attributs HTML de votre application.
99
1010
- **Type :** `Object` ou `Function`
1111

@@ -39,6 +39,6 @@ export default {
3939

4040
<div class="Alert">
4141

42-
Afin d'éviter les doublons quand vous utilisez un composant enfant, utilisez un identifiant unique à l'aide de la clé `hid`. En savoir [plus à ce propos](https://github.com/declandewet/vue-meta#lists-of-tags).
42+
Afin d'éviter les doublons quand vous utilisez un composant enfant, utilisez un identifiant unique à l'aide de la clé `hid`. En savoir [plus à ce propos](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
4343

4444
</div>

fr/faq/duplicated-meta-tags.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description: Balises meta dupliquées avec Nuxt.js ?
55

66
# Balises meta dupliquées ?
77

8-
Il s'agit d'une « fonctionnalité » de [vue-meta](https://github.com/declandewet/vue-meta), merci de lire la [documentation des éléments d'entête](/guide/views#html-head).
8+
Il s'agit d'une « fonctionnalité » de [vue-meta](https://github.com/nuxt/vue-meta), merci de lire la [documentation des éléments d'entête](/guide/views#html-head).
99

10-
> Afin d'éviter toute duplication lors de l'utilisation d'un composant enfant, donnez un identifiant unique à l'aide de la clé `hid`. [En savoir plus](https://github.com/declandewet/vue-meta#lists-of-tags).
10+
> Afin d'éviter toute duplication lors de l'utilisation d'un composant enfant, donnez un identifiant unique à l'aide de la clé `hid`. [En savoir plus](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
1111
1212
Pour la meta description, vous devez ajouter un identifiant unique `hid` afin que vue-meta sache qu'il doit remplacer la balise par défaut.
1313

fr/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Nuxt.js inclut les éléments suivants afin de créer une expérience de dévelo
2929
- [Vue 2](https://fr.vuejs.org/)
3030
- [Vue Router](https://router.vuejs.org/fr/)
3131
- [Vuex](https://ssr.vuejs.org/fr/) (inclut uniquement quand l'[option `store`](/guide/vuex-store) est activée)
32-
- [vue-meta](https://github.com/declandewet/vue-meta)
32+
- [vue-meta](https://github.com/nuxt/vue-meta)
3333

3434
Un total de seulement **57ko min+gzip** (53ko avec Vuex).
3535

fr/guide/views.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Pour plus d'informations à propos de l'utilisation des attributs de pages, cons
167167

168168
## Entête HTML
169169

170-
Nuxt.js utilise [vue-meta](https://github.com/declandewet/vue-meta) pour mettre à jour les `headers` et les `html attributes` de votre application.
170+
Nuxt.js utilise [vue-meta](https://github.com/nuxt/vue-meta) pour mettre à jour les `headers` et les `html attributes` de votre application.
171171

172172
Nuxt.js configure `vue-meta` avec les options suivantes :
173173

@@ -198,7 +198,7 @@ head: {
198198
}
199199
```
200200

201-
Pour connaitre la liste des options que vous pouvez donner à `head`, jeter un œil à la [documentation vue-meta](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
201+
Pour connaitre la liste des options que vous pouvez donner à `head`, jeter un œil à la [documentation vue-meta](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
202202

203203
More information about the `head` method: [API Configuration `head`](/api/configuration-head).
204204

@@ -208,6 +208,6 @@ Plus d'informations à propos de la méthode `head` dans [la partie Configuratio
208208

209209
<div class="Alert">
210210

211-
Afin d'éviter toutes duplications lors de l'utilisation d'un composant enfant, donnez un identifiant unique à l'aide de l'attribut `hid`. Pour [en savoir plus](https://github.com/declandewet/vue-meta#lists-of-tags).
211+
Afin d'éviter toutes duplications lors de l'utilisation d'un composant enfant, donnez un identifiant unique à l'aide de l'attribut `hid`. Pour [en savoir plus](https://vue-meta.nuxtjs.org/api/#tagidkeyname).
212212

213213
</div>

id/api/configuration-head.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = {
2323
}
2424
```
2525

26-
Untuk mengetahui daftar pilihan yang dapat Anda berikan pada `head`, lihat [dokumentasi vue-meta](https://github.com/declandewet/vue-meta#recognized-metainfo-properties).
26+
Untuk mengetahui daftar pilihan yang dapat Anda berikan pada `head`, lihat [dokumentasi vue-meta](https://vue-meta.nuxtjs.org/api/#metainfo-properties).
2727

2828
<div class="Alert Alert--teal">
2929

id/api/pages-head.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: Nuxt.js menggunakan vue-meta untuk memperbarui `headers` dan `HTML
66

77
# Metode head
88

9-
> Nuxt.js menggunakan [vue-meta](https://github.com/declandewet/vue-meta) untuk memperbarui `headers` dan `html attributes` pada aplikasi Anda.
9+
> Nuxt.js menggunakan [vue-meta](https://github.com/nuxt/vue-meta) untuk memperbarui `headers` dan `html attributes` pada aplikasi Anda.
1010
1111
- **Type:** `Object` atau `Function`
1212

@@ -41,6 +41,6 @@ export default {
4141

4242
<div class="Alert">
4343

44-
Untuk menghindari duplikasi saat menggunakannya pada "komponen child", berikan pengenal unik dengan key `yang tersembunyi`, [baca lebih lanjut] (https://github.com/declandewet/vue-meta#lists-of-tags).
44+
Untuk menghindari duplikasi saat menggunakannya pada "komponen child", berikan pengenal unik dengan key `yang tersembunyi`, [baca lebih lanjut] (https://vue-meta.nuxtjs.org/api/#tagidkeyname).
4545

4646
</div>

id/guide/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Nuxt.js includes the following to create a rich web application development:
3030
- [Vue Router](https://router.vuejs.org/en/)
3131
- [Vuex](https://vuex.vuejs.org/en/) (included only when using the [store option](/guide/vuex-store))
3232
- [Vue Server Renderer](https://ssr.vuejs.org/en/) (excluded when using [`mode: 'spa'`](/api/configuration-mode))
33-
- [vue-meta](https://github.com/declandewet/vue-meta)
33+
- [vue-meta](https://github.com/nuxt/vue-meta)
3434

3535
A total of only **57kB min+gzip** (53kB with Vuex).
3636

0 commit comments

Comments
 (0)