mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 17:13:56 +00:00
16 lines
222 B
Vue
16 lines
222 B
Vue
<template>
|
|
<div>Hello Vue {{ version }}!</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent, ref } from '#app'
|
|
|
|
export default defineComponent({
|
|
setup () {
|
|
return {
|
|
version: ref('2')
|
|
}
|
|
}
|
|
})
|
|
</script>
|