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

19 lines
229 B
Vue
Raw Normal View History

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