Nuxt/test/fixtures/fetch/pages/old-fetch.vue
2020-02-04 19:36:22 +01:00

19 lines
229 B
Vue

<template>
<div>
Display a warning in the console
</div>
</template>
<script>
export default {
async fetch (context) {
// Should display a warning
},
data () {
return {
team: []
}
}
}
</script>