mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
17 lines
268 B
TypeScript
17 lines
268 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ionicBootstrap} from '../../../../../src';
|
|
|
|
|
|
@Component({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class E2EPage {
|
|
blockButton = true;
|
|
|
|
toggleBlock() {
|
|
this.blockButton = !this.blockButton;
|
|
}
|
|
}
|
|
|
|
ionicBootstrap(E2EPage);
|