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