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

12 lines
144 B
Vue
Raw Normal View History

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