2021-07-15 11:28:04 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
Hello World
|
|
|
|
|
2021-11-10 20:25:29 +00:00
|
|
|
<Html :lang="String(dynamic)">
|
|
|
|
<Head>
|
|
|
|
<Title>{{ dynamic }} title</Title>
|
|
|
|
<Meta name="description" :content="`My page's ${dynamic} description`" />
|
|
|
|
<Link rel="preload" href="/test.txt" as="script" />
|
|
|
|
</Head>
|
|
|
|
</Html>
|
2021-07-15 11:28:04 +00:00
|
|
|
|
|
|
|
<button class="blue" @click="dynamic = Math.random() * 100">
|
|
|
|
Clickme
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
|
|
|
|
export default {
|
|
|
|
setup () {
|
|
|
|
useMeta({
|
|
|
|
bodyAttrs: {
|
|
|
|
class: 'test'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return { dynamic: ref(49) }
|
|
|
|
},
|
|
|
|
head: {
|
|
|
|
title: 'Another title'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|