mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
46 lines
598 B
JavaScript
46 lines
598 B
JavaScript
export class Ion {}
|
|
|
|
// export class IonElement extends Ion {
|
|
// constructor() {
|
|
|
|
// this.children = [];
|
|
// }
|
|
|
|
// addChild(child) {
|
|
|
|
// }
|
|
// removeChild(child) {
|
|
// }
|
|
// insertChild(index, child) {
|
|
// }
|
|
|
|
// behaviors: Array<Behavior>;
|
|
// events: Array<String>;
|
|
// }
|
|
|
|
// class Behavior {
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// class IonButton extends IonElement {
|
|
// text: String;
|
|
// type: String;
|
|
// }
|
|
|
|
// class TabBar extends IonElement {
|
|
// tabbuttons: Array<IonTabButton>
|
|
|
|
// onClickTab() {
|
|
// let clickedTab = ev.target;
|
|
|
|
// }
|
|
// }
|
|
// class IonTabButton extends IonButton {
|
|
|
|
// }
|