mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ionicBootstrap} from 'ionic-angular';
|
|
|
|
// Uses the list's demo but passes the demo var to change the title
|
|
@Component({
|
|
templateUrl: '../list/main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
demo = "Item";
|
|
}
|
|
|
|
ionicBootstrap(ApiDemoApp);
|