2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-23 22:34:04 +03:00
Files
vue-meta/docs
pimlie c5022f7deb docs: add homepage
docs: upgrade to vuepress v1

change pkg description to HTML metadata
2019-06-08 19:25:24 +02:00
..
2019-06-08 19:25:24 +02:00
2019-04-20 10:46:06 +02:00
2019-06-08 19:25:24 +02:00

home, heroImage, heroText, tagline, actionText, actionLink, features, footer
home heroImage heroText tagline actionText actionLink features footer
true /vue-meta.png vue-meta HTML Metadata manager for Vue.js Get Started → /guide/
title details
What vue-meta is a plugin for Vue.js which helps you to manage your app's metadata using Vue's built-in reactivity
title details
How Just export the special property `metaInfo` in any or all your components
title details
So? Nested components can overwrite each others values, allowing you to easily add or remove metadata where and when you need it
MIT License | Created by Declan de Wet, currently developed with ❤ by Nuxt.js core-team & contributors

::: tip We need your help! We are working on defining the RFC for Vue Meta v3.0. It will be a ground-breaking release built from the ground up.

We would like your help with this! Please visit the Vue Meta v3.0 rfc and let us know your thoughts. :::

// Component.vue
{
  metaInfo: {
    meta: [
      { charset: 'utf-8' },
      { name: 'viewport', content: 'width=device-width, initial-scale=1' }
    ]
  }
}
<!-- Rendered HTML tags in your page -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

See the examples for more inspiration!