index.html 992 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Welcome to Tauri!</title>
  8. </head>
  9. <body>
  10. <h1>Welcome to Tauri!</h1>
  11. <script>
  12. window.addEventListener('DOMContentLoaded', (event) => {
  13. window.__TAURI__
  14. .invoke('tauri', {
  15. __tauriModule: 'Fs',
  16. message: {
  17. cmd: 'readFile',
  18. path: '.tauri_3mb.json',
  19. options: {
  20. // home folder
  21. dir: 11
  22. }
  23. }
  24. })
  25. .then((_data) => {
  26. // success
  27. window.__TAURI__.invoke('app_should_close', { exitCode: 0 })
  28. })
  29. .catch((_error) => {
  30. // error
  31. window.__TAURI__.invoke('app_should_close', { exitCode: 1 })
  32. })
  33. })
  34. </script>
  35. </body>
  36. </html>