fe-drone-ci/src/views/errlog/index.vue

26 lines
667 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="errPage-container">
<err-code></err-code>
<h3>请点击右上角bug小图表</h3>
<code>
现在的管理后台基本都是spa的形式了它增强了用户体验但同时也会怎增加页面出问题的可能性可能一个小小的疏忽就导致整个页面的死锁好在Vue官网提供了一个方法来捕获处理异常
</code>
<a href="#"><img src='http://panjiachen.github.io/images/errHandler.png'></a>
</div>
</template>
<script>
import errCode from './errcode'
export default {
components: { errCode }
}
</script>
<style scoped>
.errPage-container {
padding: 30px;
}
</style>