mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
22 lines
389 B
TypeScript
22 lines
389 B
TypeScript
import {App} from 'ionic-angular';
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
constructor() {
|
|
this.appType = "paid";
|
|
this.safari = "links";
|
|
this.news = "local";
|
|
this.favorites = "recent";
|
|
|
|
this.purchased = "all";
|
|
this.mapStyle = "sat";
|
|
this.teslaModels = "X";
|
|
|
|
this.pet = "puppies";
|
|
this.calendar = "day";
|
|
this.proxy = "auto";
|
|
}
|
|
}
|