mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
17 lines
303 B
Vue
17 lines
303 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<img :src="thumbnailUrl" />
|
||
|
<p><router-link to="/">Home</router-link> - About</p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import axios from 'axios'
|
||
|
|
||
|
export default {
|
||
|
data () {
|
||
|
return axios.get('http://jsonplaceholder.typicode.com/photos/1').then(res => res.data)
|
||
|
}
|
||
|
}
|
||
|
</script>
|