Nuxt/examples/custom-layout/layouts/error.vue
2016-12-24 01:55:46 +01:00

10 lines
110 B
Vue

<template>
<h1>Custom error page</h1>
</template>
<script>
export default {
props: ['error']
}
</script>