mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
26 lines
368 B
TypeScript
26 lines
368 B
TypeScript
import {App} from 'ionic-angular';
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
data;
|
|
|
|
constructor() {
|
|
this.data = {
|
|
jon: true,
|
|
daenerys: true,
|
|
arya: false,
|
|
tyroin: false,
|
|
sansa: true,
|
|
khal: false,
|
|
cersei: true,
|
|
stannis: true,
|
|
petyr: false,
|
|
hodor: true,
|
|
catelyn: true
|
|
};
|
|
}
|
|
|
|
}
|