mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-09 04:55:54 +00:00
11 lines
159 B
Vue
11 lines
159 B
Vue
<script lang="ts" setup>
|
|
const hmrId = ref(0)
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
HMR ID:
|
|
<span data-testid="hmr-id">{{ hmrId }}</span>
|
|
</div>
|
|
</template>
|