Nuxt/test/fixtures/bridge/layouts/error.vue
pooya parsa 11626eea4f
feat!: migrate to nitropack (#3956)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2022-04-07 13:28:04 +02:00

12 lines
145 B
Vue

<template>
<div>
{{ error.message || 'An error occurred' }}
</div>
</template>
<script>
export default {
props: ['error']
}
</script>