mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
9 lines
205 B
Vue
9 lines
205 B
Vue
<template>
|
|
<div>Hello Vue {{ version }}!</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
useMeta({ meta: [{ name: 'description', content: 'This is a page to demo Nuxt Bridge.' }] })
|
|
const version = ref('2')
|
|
</script>
|