美文网首页
react 刷新正在加载..

react 刷新正在加载..

作者: 糖醋里脊120625 | 来源:发表于2026-02-25 17:15 被阅读0次
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8" />
  <meta name="viewport"
    content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,viewport-fit=cover" />
  <title>
    <%= title %>
  </title>
  <link rel="icon" href="/favicon.ico" />
</head>

<body>
  <div id="app">
    <style>
      .app-preloader {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        background-color: #fff;
        color: #c8c9cc;
      }

      .dark .app-preloader {
        background-color: #17171a;
        color: rgba(255, 255, 255, .7);
      }
    </style>
    <div class="app-preloader">
      <div class="app-preloader__label">正在加载... </div>
    </div>
  </div>
  <script type="module" src="/src/main.ts"></script>
</body>

</html>

相关文章

网友评论

      本文标题:react 刷新正在加载..

      本文链接:https://www.haomeiwen.com/subject/rmvydstx.html