Nuxt/test/fixtures/basic/pages/error.vue
Sebastien Chopin b49cf4d9d5 Fix tests
2017-04-14 12:06:40 +02:00

15 lines
203 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>