gancio-upstream/layouts/error.vue

18 lines
319 B
Vue

<template lang='pug'>
el-main
el-card#error
h1(v-if="error.statusCode === 404") {{error.message}}
h1(v-else) An error occurred: {{error.message}}
</template>
<script>
export default {
props: ['error']
}
</script>
<style lang="less">
#error {
margin-top: 20px;
color: orange;
}
</style>