mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
e6ca07bdc0
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: jhuang@hsk-partners.com <jhuang@hsk-partners.com>
19 lines
291 B
Vue
19 lines
291 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>
|