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