mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 10:04:05 +00:00
11626eea4f
Co-authored-by: Daniel Roe <daniel@roe.dev>
12 lines
145 B
Vue
12 lines
145 B
Vue
<template>
|
|
<div>
|
|
{{ error.message || 'An error occurred' }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['error']
|
|
}
|
|
</script>
|