Nuxt/test/fixtures/basic/pages/error.vue
2017-10-31 14:26:19 +01:00

15 lines
202 B
Vue

<template>
<h1>Error page</h1>
</template>
<script>
export default {
asyncData({ req }) {
// Not for nuxt generate
if (req) {
throw new Error('Error mouahahah')
}
}
}
</script>