mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
18 lines
240 B
Vue
18 lines
240 B
Vue
<template>
|
|
<div>
|
|
<h1>Dog</h1>
|
|
<img :src="dog">
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
async asyncData ({ app }) {
|
|
const { data: { message: dog } } = await app.$axios.get('/dog')
|
|
return { dog }
|
|
}
|
|
}
|
|
</script>
|