Files
finanzas_api/APP/layouts/error.vue
2021-06-22 20:45:25 -05:00

12 lines
213 B
Vue

<template>
<div>
<h1>Página no encontrada</h1>
</div>
</template>
<script>
export default {
props: ['error'],
//layout: 'error' // you can set a custom layout for the error page
}
</script>