Nuxt/test/fixtures/hmr/components/islands/HmrComponent.vue

11 lines
159 B
Vue
Raw Normal View History

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