index.html 674 B

12345678910111213141516171819202122232425
  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>Welcome to Tauri!</title>
  7. </head>
  8. <body>
  9. <h1>Welcome to Tauri!</h1>
  10. <script>
  11. window.addEventListener('DOMContentLoaded', (event) => {
  12. window.__TAURI__.invoke('read_file')
  13. .then((_data) => {
  14. // success
  15. window.__TAURI__.invoke('app_should_close', { exitCode: 0 })
  16. })
  17. .catch((_error) => {
  18. // error
  19. window.__TAURI__.invoke('app_should_close', { exitCode: 1 })
  20. })
  21. })
  22. </script>
  23. </body>
  24. </html>