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

12 lines
139 B
Vue
Raw Normal View History

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