Nuxt/test/fixtures/basic/pages/error.vue
2017-11-02 17:48:20 +01:00

12 lines
150 B
Vue

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