mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 10:24:50 +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>
|