mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +00:00
12 lines
206 B
Vue
12 lines
206 B
Vue
|
<template>
|
||
|
<h1>Async Throw Error</h1>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
async asyncData () {
|
||
|
await new Promise(resolve => setTimeout(resolve, 2000))
|
||
|
throw new Error('crash')
|
||
|
}
|
||
|
}
|
||
|
</script>
|