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

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [chromedriver](https://togithub.com/giggio/node-chromedriver) | [`^86.0.0` -> `^103.0.0`](https://renovatebot.com/diffs/npm/chromedriver/86.0.0/103.0.0) | [![age](https://badges.renovateapi.com/packages/npm/chromedriver/103.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@nuxtjs/eslint-config](https://togithub.com/nuxt/eslint-config) | [`^3.0.0` -> `^10.0.0`](https://renovatebot.com/diffs/npm/@nuxtjs%2feslint-config/3.0.0/10.0.0) | [![age](https://badges.renovateapi.com/packages/npm/@nuxtjs%2feslint-config/10.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

> [!NOTE] > Mend has cancelled [the proposed renaming](https://redirect.github.com/renovatebot/renovate/discussions/37842) of the Renovate GitHub app being renamed to `mend[bot]`. > > This notice will be removed on 2025-10-07. This PR contains...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-plugin-promise](https://togithub.com/eslint-community/eslint-plugin-promise) | [`^4.2.1` -> `^6.2.0`](https://renovatebot.com/diffs/npm/eslint-plugin-promise/4.2.1/6.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-promise/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-plugin-jest](https://togithub.com/jest-community/eslint-plugin-jest) | [`^23.13.2` -> `^26.5.3`](https://renovatebot.com/diffs/npm/eslint-plugin-jest/23.13.2/26.5.3) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-jest/26.5.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-config-standard](https://togithub.com/standard/eslint-config-standard) | [`^14.1.1` -> `^17.0.0`](https://renovatebot.com/diffs/npm/eslint-config-standard/14.1.1/17.0.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint-config-standard/17.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

> [!NOTE] > Mend has cancelled [the proposed renaming](https://redirect.github.com/renovatebot/renovate/discussions/37842) of the Renovate GitHub app being renamed to `mend[bot]`. > > This notice will be removed on 2025-10-07. This PR contains...

I'm using the import like the document , and my vue-meta is at 3.0.0-alpha.10 `import { createMetaManager } from 'vue-meta' app.use(createMetaManager())` What have i done wrong?

https://github.com/nuxt/vue-meta/blob/e9adc99bdc909d6daa5f0678f57f321a6ff2d6f6/dist/vue-meta.esm-browser.js#L811 Mobile Safari on iOS < 15 (iOS 14.3 tested) generates: "SyntaxError: Unexpected token '='. Expected an opening '(' before a method's parameter list." Working solution is to replace line...

When using options API: ```js export default defineComponent({ data() { return { edit: this.$route.params?.id } }, metaInfo() { return { title: this.edit ? 'Edit product' : 'Create product' } }...