Nuxt/test/fixtures/basic/pages/error.vue
2017-03-01 16:03:46 +01:00

12 lines
144 B
Vue

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