index.html 482 B

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