--- title: 'useSeoMeta' description: The useSeoMeta composable lets you define your site's SEO meta tags as a flat object with full TypeScript support. links: - label: Source icon: i-simple-icons-github to: https://github.com/unjs/unhead/blob/main/packages/unhead/src/composables/useSeoMeta.ts size: xs --- This helps you avoid common mistakes, such as using `name` instead of `property`, as well as typos - with over 100+ meta tags fully typed. ::important This is the recommended way to add meta tags to your site as it is XSS safe and has full TypeScript support. :: :read-more{to="/docs/getting-started/seo-meta"} ## Usage ```vue [app.vue] ``` When inserting tags that are reactive, you should use the computed getter syntax (`() => value`): ```vue [app.vue] ``` ## Parameters There are over 100 parameters. See the [full list of parameters in the source code](https://github.com/harlan-zw/zhead/blob/main/packages/zhead/src/metaFlat.ts#L1035). :read-more{to="/docs/getting-started/seo-meta"}