mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-25 15:15:19 +00:00
12 lines
164 B
Vue
12 lines
164 B
Vue
|
<template>
|
||
|
<h1>Async Throw Error</h1>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
middleware: ['slow'],
|
||
|
asyncData () {
|
||
|
throw new Error('crash')
|
||
|
}
|
||
|
}
|
||
|
</script>
|