Nuxt/test/fixtures/basic/pages/error.vue

12 lines
150 B
Vue

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