-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmyapp.html
More file actions
37 lines (37 loc) · 1.1 KB
/
myapp.html
File metadata and controls
37 lines (37 loc) · 1.1 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
<aria-menubar (change)="handleMenuChange()">
<aria-menuitem>
<label>One</label>
<aria-menu>
<aria-menuitem value="oneone">
<label>One One</label>
</aria-menuitem>
<aria-menuitem value="onetwo">
<label>One Two</label>
</aria-menuitem>
<aria-menuitem value="onethree">
<label>One Three</label>
</aria-menuitem>
</aria-menu>
</aria-menuitem>
<aria-menuitem value="two">
<label>Two</label>
</aria-menuitem>
<aria-menuitem>
<label>Three</label>
<aria-menu>
<aria-menuitem value="threeone">
<label>Three One</label>
</aria-menuitem>
<aria-menuitem value="threetwo">
<label>Three Two</label>
</aria-menuitem>
<aria-menuitem value="threethree">
<label>Three Three</label>
</aria-menuitem>
</aria-menu>
</aria-menuitem>
</aria-menubar>
<div class="content">
{{menuValue}}
</div>
<style>@import "myapp.css";</style>