mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
19 lines
229 B
Vue
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>
|