mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-09 04:55:54 +00:00
22 lines
366 B
Vue
22 lines
366 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
some: 'stuff',
|
|
})
|
|
const count = ref(1)
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Title>HMR fixture</Title>
|
|
<h1>Home page</h1>
|
|
<div>
|
|
Count:
|
|
<span data-testid="count">{{ count }}</span>
|
|
</div>
|
|
<button @click="count++">
|
|
Increment
|
|
</button>
|
|
<pre>{{ $route.meta }}</pre>
|
|
</div>
|
|
</template>
|