mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
11 lines
140 B
TypeScript
11 lines
140 B
TypeScript
import {App} from 'ionic-angular';
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class ApiDemoApp {
|
|
constructor() {
|
|
this.demo = "List";
|
|
}
|
|
}
|