Nuxt/test/fixtures/bridge/layouts/error.vue

12 lines
145 B
Vue
Raw Normal View History

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