mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-29 17:07:22 +00:00
e13baf9867
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
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>
|