-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 957 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>A17 Behavior test</title>
</head>
<body>
<div id="app">
<p>Imported Behavior :</p>
<div data-behavior="showAlert" data-showalert-lazy="showAlertLazyAlt">
<button data-showalert-btn>Click me</button>
<button data-showalertlazyalt-btn>Click me lazyloaded behavior using dynamic import</button>
</div>
<hr />
<p>Lazyloaded Behavior :</p>
<div data-behavior-lazy="showAlertLazy">
<button data-showalertlazy-btn>Click me lazyloaded behavior</button><br>
<button data-showalertlazy-load>Click me append new behavior</button><br>
<button data-showalertlazy-delete>Click me destroy added behavior</button>
<div data-showalertlazy-container></div>
</div>
</div>
</body>
</html>