mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-12 03:38:07 +00:00
10 lines
169 B
Vue
10 lines
169 B
Vue
<template>
|
|
<div>
|
|
Page visits: {{ data.count }}
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const { data } = await asyncData('time', () => $fetch('/api/count'))
|
|
</script>
|