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

12 lines
173 B
Vue
Raw Normal View History

2016-12-21 14:03:37 +00:00
<template>
<h1>Error page</h1>
</template>
<script>
export default {
asyncData ({ error }) {
error({ message: 'Custom error', customProp: 'ezpz' })
2016-12-21 14:03:37 +00:00
}
}
</script>