index.html 752 B

123456789101112131415161718192021222324252627282930
  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__.core
  13. .invoke('read_file')
  14. .then((_data) => {
  15. // success
  16. window.__TAURI__.core.invoke('app_should_close', {
  17. exitCode: 0
  18. })
  19. })
  20. .catch((_error) => {
  21. // error
  22. window.__TAURI__.core.invoke('app_should_close', {
  23. exitCode: 1
  24. })
  25. })
  26. })
  27. </script>
  28. </body>
  29. </html>