mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
14 lines
185 B
TypeScript
14 lines
185 B
TypeScript
import {App} from '../../../../../ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class E2EApp {
|
|
blockButton = true;
|
|
|
|
toggleBlock() {
|
|
this.blockButton = !this.blockButton;
|
|
}
|
|
}
|