| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="layout err-layout">
- <div>
- <img :src="errImg" />
- <div class="content" v-html="'内存不足,请勿同时打开多个页面或应用程序,尝试重启浏览器后重新打开。'"></div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import errImg from './img/err.png'
- </script>
- <style lang="scss" scoped src="./style.scss" />
- <style lang="scss">
- .err-layout {
- .content {
- font-weight: 400;
- font-size: 16px;
- color: rgba(100, 101, 102, 1);
- p {
- margin-top: 10px;
- }
- }
- }
- </style>
|