Nuxt/test/fixtures/fetch/pages/fetch-root.vue

22 lines
316 B
Vue
Raw Normal View History

<template>
<button @click="$fetch">
fetch {{ foo }}
</button>
</template>
<script>
export default {
async fetch () {
await new Promise(resolve => setTimeout(resolve, 100))
this.foo = this.$fetch ? 'has fetch' : 'hasn\'t fetch'
},
data () {
return {
foo: null
}
}
}
</script>