-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaqa-tab.html
41 lines (36 loc) · 968 Bytes
/
aqa-tab.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<link rel="import" href="../polymer/polymer-element.html">
<dom-module id="aqa-tab">
<template>
<slot></slot>
</template>
<script>
/**
* `aqa-tab`
*
*
* @customElement
* @polymer
* @demo demo/index.html
*/
class AqaTab extends Polymer.Element {
static get is() { return 'aqa-tab'; }
static get properties() {
return {
label: {
type: String,
notify: true
},
name: {
type: String,
notify: true
},
count: {
type: String,
notify: true
}
}
}
}
window.customElements.define(AqaTab.is, AqaTab);
</script>
</dom-module>