Nuxt/docs/3.api/2.composables/use-head-safe.md

1.6 KiB

title description links
useHeadSafe The recommended way to provide head data with user input.
label icon to size
Source i-simple-icons-github https://github.com/unjs/unhead/blob/main/packages/vue/src/composables.ts xs

The useHeadSafe composable is a wrapper around the useHead composable that restricts the input to only allow safe values.

Usage

You can pass all the same values as useHead

useHeadSafe({
  script: [
    { id: 'xss-script', innerHTML: 'alert("xss")' }
  ],
  meta: [
    { 'http-equiv': 'refresh', content: '0;javascript:alert(1)' }
  ]
})
// Will safely generate
// <script id="xss-script"></script>
// <meta content="0;javascript:alert(1)">

::read-more{to="https://unhead.unjs.io/usage/composables/use-head-safe" target="_blank"} Read more on unhead documentation. ::

Type

useHeadSafe(input: MaybeComputedRef<HeadSafe>): void

The list of allowed values is:

const WhitelistAttributes = {
  htmlAttrs: ['class', 'style', 'lang', 'dir'],
  bodyAttrs: ['class', 'style'],
  meta: ['name', 'property', 'charset', 'content', 'media'],
  noscript: ['textContent'],
  style: ['media', 'textContent', 'nonce', 'title', 'blocking'],
  script: ['type', 'textContent', 'nonce', 'blocking'],
  link: ['color', 'crossorigin', 'fetchpriority', 'href', 'hreflang', 'imagesrcset', 'imagesizes', 'integrity', 'media', 'referrerpolicy', 'rel', 'sizes', 'type'],
}

See @unhead/vue for more detailed types.