mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
20 lines
244 B
TypeScript
20 lines
244 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class E2EApp {
|
|
constructor() {
|
|
setTimeout(() => {
|
|
this.shouldShow = true;
|
|
}, 10);
|
|
}
|
|
|
|
getItems() {
|
|
console.log('getItems');
|
|
return [0,1];
|
|
}
|
|
|
|
}
|