mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
17 lines
194 B
TypeScript
17 lines
194 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
|
|
class DemoApp {
|
|
|
|
constructor() {
|
|
this.isHidden = false;
|
|
}
|
|
|
|
toggle() {
|
|
this.isHidden = !this.isHidden;
|
|
}
|
|
|
|
} |