Skip to content

Commit ec85c6d

Browse files
iskanderbroereSébastien Chopin
authored andcommitted
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

0 commit comments

Comments
 (0)