mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
e934da3c36
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Clark Du <clark.duxin@gmail.com>
22 lines
316 B
Vue
22 lines
316 B
Vue
<template>
|
|
<button @click="$fetch">
|
|
fetch {{ foo }}
|
|
</button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
data () {
|
|
return {
|
|
foo: null
|
|
}
|
|
},
|
|
async fetch () {
|
|
await new Promise(resolve => setTimeout(resolve, 100))
|
|
|
|
this.foo = this.$fetch ? 'has fetch' : 'hasn\'t fetch'
|
|
}
|
|
}
|
|
</script>
|