mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-24 06:22:45 +08:00
18 lines
279 B
TypeScript
18 lines
279 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class E2EApp {
|
|
constructor() {
|
|
this.homeIcon = 'home';
|
|
this.isActive = false;
|
|
this.btnIcon = 'home';
|
|
}
|
|
|
|
updateIcon() {
|
|
this.btnIcon = (this.btnIcon === 'home' ? 'star' : 'home');
|
|
}
|
|
}
|