33 lines
1022 B
Vue
33 lines
1022 B
Vue
<template>
|
|
<div class="errPage-container">
|
|
<errorA />
|
|
<errorB />
|
|
<h3>Please click the bug icon in the upper right corner</h3>
|
|
<code>
|
|
Now the management system are basically the form of the spa, it enhances the user experience, but it also increases the possibility of page problems, a small negligence may lead to the entire page deadlock. Fortunately Vue provides a way to catch handling exceptions, where you can handle errors or report exceptions.
|
|
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/error.html">
|
|
Document introduction
|
|
</a>
|
|
</code>
|
|
<a href="#">
|
|
<img src="https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif">
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import errorA from './errorTestA'
|
|
import errorB from './errorTestB'
|
|
|
|
export default {
|
|
name: 'ErrorLog',
|
|
components: { errorA, errorB }
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.errPage-container {
|
|
padding: 30px;
|
|
}
|
|
</style>
|