mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ionicBootstrap} from 'ionic-angular';
|
|
|
|
|
|
// Use the toolbar demo but pass in the demo name to change the title
|
|
// this will also hide some of the toolbars that don't use `ion-title`
|
|
@Component({
|
|
templateUrl: '../toolbar/main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
demo = "Title";
|
|
favorites = "recent";
|
|
apps = "free";
|
|
}
|
|
|
|
ionicBootstrap(ApiDemoApp);
|