index.html 932 B

123456789101112131415161718192021222324252627282930313233343536
  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__
  13. .invoke('tauri', {
  14. __tauriModule: 'Fs',
  15. message: {
  16. cmd: 'readFile',
  17. path: '.tauri_3mb.json',
  18. options: {
  19. // home folder
  20. dir: 11
  21. }
  22. }
  23. })
  24. .then((_data) => {
  25. // success
  26. window.__TAURI__.invoke('app_should_close', { exitCode: 0 })
  27. })
  28. .catch((_error) => {
  29. // error
  30. window.__TAURI__.invoke('app_should_close', { exitCode: 1 })
  31. })
  32. })
  33. </script>
  34. </body>
  35. </html>