Nuxt/examples/axios/pages/index.vue
2017-10-29 17:08:42 +08:00

18 lines
242 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>