index.html 796 B

12345678910111213141516171819
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" type="image/svg+xml" href="/vite.svg" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title></title>
  8. <!-- PayPal JS SDK 核心引入,替换为你的 Client ID -->
  9. <script src="https://www.paypal.com/sdk/js?client-id=AWTqiGF8Tcnuu_gnZzJ_k4a-LvPFj4IbUh98l2zCKxdngjCth3s2fwH0kcC5G-zjyD2t8ty67O1BV0N-&currency=USD"></script>
  10. <!-- 引入quill里的三个css文件 -->
  11. <link href="/quill/quill.core.css" rel="stylesheet">
  12. <link href="/quill/quill.snow.css" rel="stylesheet">
  13. <link href="/quill/quill.bubble.css" rel="stylesheet">
  14. </head>
  15. <body>
  16. <div id="app"></div>
  17. <script type="module" src="/src/main.js"></script>
  18. </body>
  19. </html>