Nuxt/test/basic/pages/error.vue
Sébastien Chopin 095c8efe56 Add error tests
2016-12-20 19:25:51 +01:00

12 lines
139 B
Vue

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