index.vue 616 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="layout err-layout">
  3. <div>
  4. <img :src="errImg" />
  5. <div class="content" v-html="'内存不足,请勿同时打开多个页面或应用程序,尝试重启浏览器后重新打开。'"></div>
  6. </div>
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. import errImg from './img/err.png'
  11. </script>
  12. <style lang="scss" scoped src="./style.scss" />
  13. <style lang="scss">
  14. .err-layout {
  15. .content {
  16. font-weight: 400;
  17. font-size: 16px;
  18. color: rgba(100, 101, 102, 1);
  19. p {
  20. margin-top: 10px;
  21. }
  22. }
  23. }
  24. </style>