mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
26 lines
366 B
TypeScript
26 lines
366 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
@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
|
|
};
|
|
}
|
|
|
|
}
|