1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 20:39:48 +08:00
This commit is contained in:
yeke1230 2021-06-10 09:50:38 +08:00
parent 686e44564a
commit 8c42073eb6
8 changed files with 42 additions and 12 deletions

View File

@ -0,0 +1,20 @@
{
"responsive-preview": {
"Mobile": [
320,
675
],
"Tablet": [
1024,
765
],
"Desktop": [
1400,
800
],
"Desktop HD": [
1920,
1080
]
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 115 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

After

Width:  |  Height:  |  Size: 126 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 126 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 132 B

View File

@ -4,29 +4,39 @@
<ErrorB /> <ErrorB />
<h3>Please click the bug icon in the upper right corner</h3> <h3>Please click the bug icon in the upper right corner</h3>
<aside> <aside>
asddasf 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. Now the management system are basically the form of the spa, it enhances
<a target="_blank" class="link-type" href="https://panjiachen.github.io/vue-element-admin-site/guide/advanced/error.html"> the user experience, but it also increases the possibility of page
Document introduction safsadfasd 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> </a>
</aside> </aside>
<a href="#"> <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> </a>
</div> </div>
</template> </template>
<script> <script>
import ErrorA from './components/ErrorTestA' import ErrorA from "./components/ErrorTestA";
import ErrorB from './components/ErrorTestB' import ErrorB from "./components/ErrorTestB";
export default { export default {
name: 'ErrorLog', name: "ErrorLog",
components: { ErrorA, ErrorB } components: { ErrorA, ErrorB },
} };
</script> </script>
<style scoped> <style scoped>
.errPage-container { .errPage-container {
padding: 30px; padding: 30px;
} }
</style> </style>