index.html 806 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Document</title>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  7. <meta name="description" content="Description" />
  8. <meta
  9. name="viewport"
  10. content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
  11. />
  12. <link
  13. rel="stylesheet"
  14. href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"
  15. />
  16. </head>
  17. <body>
  18. <div id="app"></div>
  19. <script>
  20. window.$docsify = {
  21. name: "",
  22. repo: "",
  23. loadSidebar: true, // 侧边栏配置
  24. auto2top: true, // 切换页面后是否自动跳转到页面顶部
  25. };
  26. </script>
  27. <!-- Docsify v4 -->
  28. <script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
  29. </body>
  30. </html>