mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
19 lines
293 B
Vue
19 lines
293 B
Vue
<script lang="ts">
|
|
export default defineNuxtComponent({
|
|
setup (_p, ctx) {
|
|
const state = ref(0)
|
|
|
|
const add = () => state.value++
|
|
|
|
ctx.expose({ add, state })
|
|
return {
|
|
state,
|
|
}
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>Hi i should be rendered {{ state }}</div>
|
|
</template>
|