Nuxt/test/fixtures/basic/components/clientFallback/StatefulSetup.vue

13 lines
230 B
Vue
Raw Normal View History

<template>
<div>
stateful setup {{ state }}
<NuxtClientFallback>
<BreakInSetup class="clientfallback-stateful-setup" />
</NuxtClientFallback>
</div>
</template>
<script setup>
const state = ref(1)
</script>