Merge 8c42073eb6997a0a60e1caceed831559c7ef3e21 into ec65202cb9ffeff032b7432a98e15ccdbfc2bb09
20
.codesandbox/workspace.json
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
"responsive-preview": {
|
||||
"Mobile": [
|
||||
320,
|
||||
675
|
||||
],
|
||||
"Tablet": [
|
||||
1024,
|
||||
765
|
||||
],
|
||||
"Desktop": [
|
||||
1400,
|
||||
800
|
||||
],
|
||||
"Desktop HD": [
|
||||
1920,
|
||||
1080
|
||||
]
|
||||
}
|
||||
}
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 115 B |
Before Width: | Height: | Size: 160 KiB After Width: | Height: | Size: 126 B |
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 126 B |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 132 B |
@ -4,29 +4,39 @@
|
||||
<ErrorB />
|
||||
<h3>Please click the bug icon in the upper right corner</h3>
|
||||
<aside>
|
||||
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">
|
||||
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>
|
||||
</aside>
|
||||
<a href="#">
|
||||
<img src="https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif">
|
||||
<img
|
||||
src="https://wpimg.wallstcn.com/360e4842-4db5-42d0-b078-f9a84a825546.gif"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ErrorA from './components/ErrorTestA'
|
||||
import ErrorB from './components/ErrorTestB'
|
||||
import ErrorA from "./components/ErrorTestA";
|
||||
import ErrorB from "./components/ErrorTestB";
|
||||
|
||||
export default {
|
||||
name: 'ErrorLog',
|
||||
components: { ErrorA, ErrorB }
|
||||
}
|
||||
name: "ErrorLog",
|
||||
components: { ErrorA, ErrorB },
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.errPage-container {
|
||||
padding: 30px;
|
||||
}
|
||||
.errPage-container {
|
||||
padding: 30px;
|
||||
}
|
||||
</style>
|
||||
|