mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-31 15:50:32 +00:00
20 lines
355 B
Vue
20 lines
355 B
Vue
<template>
|
|
<div>Hello Vue {{ version }}!</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { useMeta } from '#meta'
|
|
|
|
export default defineComponent({
|
|
setup () {
|
|
useMeta({ meta: [{ name: 'description', content: 'This is a page to demo Nuxt Bridge.' }] })
|
|
return {
|
|
version: ref('2')
|
|
}
|
|
},
|
|
head: {
|
|
title: 'Bridge test fixture'
|
|
}
|
|
})
|
|
</script>
|