1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-03 17:14:28 +00:00
Nuxt/test/fixtures/basic/components/islands/HmrComponent.vue

10 lines
133 B
Vue

<script lang="ts" setup>
const hmrId = ref(0)
</script>
<template>
<pre id="hmr-id">
HMR ID: {{ hmrId }}
</pre>
</template>