mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
30 lines
573 B
Vue
30 lines
573 B
Vue
<template>
|
|
<div>
|
|
<nuxt-link to="/fetch-conditional?fetch_client=true">
|
|
Fetch on client
|
|
</nuxt-link>
|
|
<p v-if="$fetchState.pending">
|
|
Fetching...
|
|
</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: []
|
|
}
|
|
},
|
|
fetchOnServer () {
|
|
return !this.$route.query.fetch_client
|
|
}
|
|
}
|
|
</script>
|