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

12 lines
150 B
Vue
Raw Normal View History

2016-12-20 18:25:51 +00:00
<template>
<h1>Error page</h1>
</template>
<script>
export default {
2017-10-31 13:26:19 +00:00
asyncData({ req }) {
2017-11-02 16:48:20 +00:00
throw new Error('Error mouahahah')
2016-12-20 18:25:51 +00:00
}
}
</script>