mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
10 lines
213 B
Vue
10 lines
213 B
Vue
|
<script setup>
|
||
|
const { data: mountain } = await useFetch(
|
||
|
'https://api.nuxtjs.dev/mountains/mount-everest'
|
||
|
)
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<pre class="text-sm text-left overflow-auto">{{ mountain }}</pre>
|
||
|
</template>
|