DUtils/example/index.html

23 lines
540 B
HTML
Raw Normal View History

2022-03-24 13:36:08 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>案例演示</title>
</head>
<body></body>
<script type="module">
import DUtils from "../dutils.js";
setTimeout(() => {
let tim = new Date().getTime();
DUtils.bus.emit("test", tim);
}, 5000);
DUtils.bus.addEventListener("test", (e) => {
alert(e);
});
</script>
</html>