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

13 lines
160 B
Vue
Raw Normal View History

2017-10-30 03:31:08 +00:00
<template>
<h1>Error page</h1>
</template>
<script>
/* eslint no-undef: 0 */
export default {
2017-10-31 13:26:19 +00:00
data() {
2017-10-30 03:31:08 +00:00
throw new Error('test youch !')
}
}
</script>