mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
21 lines
345 B
Vue
21 lines
345 B
Vue
<template>
|
|
<div>
|
|
stateful test {{ state }}
|
|
<NuxtClientFallback>
|
|
<BreakInSetup class="clientfallback-stateful" />
|
|
</NuxtClientFallback>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default defineNuxtComponent({
|
|
name: 'ClientFallbackStateful',
|
|
setup () {
|
|
const state = ref(0)
|
|
return {
|
|
state,
|
|
}
|
|
},
|
|
})
|
|
</script>
|