mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
12 lines
146 B
TypeScript
12 lines
146 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class IonicApp {
|
|
constructor() {
|
|
this.items = [1, 2, 3, 4, 5]
|
|
}
|
|
}
|