index.html 542 B

123456789101112131415161718192021
  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>Sidecar</title>
  8. </head>
  9. <body>
  10. <div></div>
  11. <script>
  12. const div = document.querySelector('div')
  13. window.__TAURI__.event.listen('message', (event) => {
  14. const p = document.createElement('p')
  15. p.innerText = event.payload
  16. div.appendChild(p)
  17. })
  18. </script>
  19. </body>
  20. </html>