mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
16 lines
337 B
TypeScript
16 lines
337 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class E2EApp {
|
|
constructor() {
|
|
this.people = [
|
|
{"name": "Adam Bradley", "components": [ "all the things"]},
|
|
{"name": "Max Lynch", "components": [ "checkbox", "content", "form"]},
|
|
{"name": "Tim Lancina", "components": [ "tabs"]}
|
|
];
|
|
}
|
|
}
|