mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
43 lines
947 B
Vue
43 lines
947 B
Vue
<script>
|
|
export default defineNuxtComponent({
|
|
head () {
|
|
return {
|
|
htmlAttrs: {
|
|
class: 'html-attrs-test',
|
|
},
|
|
}
|
|
},
|
|
setup () {
|
|
const a = ref('')
|
|
useHead({
|
|
// title template function example
|
|
titleTemplate: title => `${title} - Title Template Fn Change`,
|
|
bodyAttrs: {
|
|
class: 'body-attrs-test',
|
|
},
|
|
script: [
|
|
{
|
|
src: 'https://a-body-appended-script.com',
|
|
body: true,
|
|
},
|
|
],
|
|
meta: [{ name: 'description', content: 'first' }],
|
|
})
|
|
useHead({ meta: [{ charset: 'utf-16' }, { name: 'description', content: computed(() => `${a.value} with an inline useHead call`) }] })
|
|
a.value = 'overriding'
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Head>
|
|
<Title>Using a dynamic component</Title>
|
|
<Meta
|
|
http-equiv="content-security-policy"
|
|
content="default-src https"
|
|
/>
|
|
</Head>
|
|
</div>
|
|
</template>
|