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

Manage HTML metadata in Vue.js components with SSR support

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

![image](https://user-images.githubusercontent.com/83240328/234777265-220ca79b-e6ad-4025-b398-5f33dc8d8801.png) Someone can explain which app file or folder ?

```js Vue.use(VueMeta, { keyName: 'head', refreshOnceOnNavigation: true, changed(title) { console.log(title); } }); ```

## Issue - https://github.com/nuxt/nuxt/issues/10610

## Issues - https://github.com/nuxt/nuxt/issues/10626 - https://github.com/nuxt/nuxt/issues/6681

Is not working on chrome browser (tested with Version 109.0.5414.87 MacOS) Firefox Developer Editon 110.0b3 (64-Bit) MacOS works. ``` import VueMeta from 'vue-meta'; Vue.use(VueMeta, { // optional pluginOptions refreshOnceOnNavigation: true...

I'm using nuxt 2 I've noticed that when calling the meta refresh on the client side, it doesn't respect innerhtml=null in the child component. After further investigation I found that...

I see that the project is like stopped. are you working on finishing the V3? Thanks!

### $root[rootConfigKey] is not an object when mounted with uni-app, because uni-app onLoad life cycle priority is higher So beforeCreate needs to be initialized once when mounting $root[rootConfigKey] = {}

Hi,everyone I have a question that I want to combine meta with router in vue3; But I couldn't find the API; ``` router.beforeEach((to, from, next) => { if (to.meta.metaInfo) {...

A beforeChange hook would be super useful. Right now I'm using the following code in my app to set og and twitter meta properties equal to the title/description. Seems to...