main.js 375 B

123456789101112131415
  1. import './app.css';
  2. import App from './App.svelte';
  3. const app = new App({
  4. target: document.getElementById('app'),
  5. });
  6. //解决ios不支持按钮:active伪类
  7. // Solve the problem that ios does not support the button: active pseudo class
  8. document.body.addEventListener('touchstart', function () {
  9. //...空函数即可
  10. // ... Empty function is OK
  11. });
  12. export default app;