mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
25 lines
437 B
Vue
25 lines
437 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<p v-if="$fetchState.pending">
|
||
|
Fetching for 1 second
|
||
|
</p>
|
||
|
<pre v-else>{{ team }}</pre>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
async fetch () {
|
||
|
const url = (process.server ? `http://${this.$ssrContext.req.headers.host}` : '')
|
||
|
|
||
|
this.team = await fetch(`${url}/team.json`).then(res => res.json())
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
team: []
|
||
|
}
|
||
|
},
|
||
|
fetchDelay: 1000
|
||
|
}
|
||
|
</script>
|