vue-meta icon indicating copy to clipboard operation
vue-meta copied to clipboard

Manage HTML metadata in Vue.js components with SSR support

Results 88 vue-meta issues
Sort by recently updated
recently updated
newest added

#738 https://eslint.vuejs.org/rules/no-undef-components.html ![image](https://user-images.githubusercontent.com/6134547/169317692-907dc960-b5b0-4bd3-b982-51fcd8898b91.png)

From the documentation: `import { createMetaManager, plugin as metaPlugin } from 'vue-meta'` Error: `export 'plugin' (imported as 'metaPlugin') was not found in 'vue-meta' (possible exports: createMetaManager, deepestResolver, defaultConfig, getCurrentManager, renderToStringWithMeta,...

Since Vue 3 is now the default version, I think Vue Meta should be updated accordingly to support Vue 3 as default like all the other Vue plugins.

When using nuxt for server rendering, the following errors occur occasionally TypeError: Cannot read property '0' of undefined at a.head (47.js:2641:38) at a.$metaInfo (/data/web/supply_pro_front/node_modules/vue/dist/vue.runtime.common.prod.js:6:29787) at getComponentOption (/data/web/supply_pro_front/node_modules/vue-meta/dist/vue-meta.common.js:1016:29) at /data/web/supply_pro_front/node_modules/vue-meta/dist/vue-meta.common.js:1043:16 at...

Hello, I'm trying to make work vue-meta with Vue3 in SSR mode (https://github.com/nuxt/vue-meta/tree/next#ssr) Everything `build` just fine, I can start my express server and all but when I'm accessing a...

Hello! According to the [HTML specification](https://html.spec.whatwg.org/multipage/semantics.html#the-title-element), the global attributes are valid for the title tag. But I didn't see an api for this. Is it possible?

stale

In accordance with [the documentation](https://vue-meta.nuxtjs.org/guide/special.html) of vue-meta, it can be possible to use a null or undefined value in content and innerHTML properties for the meta and script tags to...

This pull request fix an error in the meta tags content typings to support null or undefined values, as [the docs](https://vue-meta.nuxtjs.org/guide/special.html) say.

After installing the vue-meta 3 alpha 8. I'm getting the error(see attached image). ./node_modules/vue-meta/dist/vue-meta.esm-browser.min.js 8:7170 Here is my main.js file configuration. import { createMetaManager, plugin as metaPlugin } from 'vue-meta'...

needs reproduction

Hi I'm using Vue3 with `vue-meta: ^3.0.0-alpha.8`. I'm trying to setup my project in order to set dynamically the meta-tags. Here my code on `App.vue`: ``` import constants from './constants'...