index.html 437 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Tauri</title>
  7. </head>
  8. <body>
  9. <h1></h1>
  10. <button>Back</button>
  11. <script>
  12. const button = document.querySelector('button')
  13. button.addEventListener('click', () => window.history.back())
  14. </script>
  15. <script src="index.js"></script>
  16. </body>
  17. </html>