mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
16 lines
205 B
TypeScript
16 lines
205 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class E2EApp {
|
|
constructor() {
|
|
this.myValues = {
|
|
value1: 'Dynamic Input',
|
|
value2: 'Dynamic Textarea'
|
|
};
|
|
}
|
|
|
|
}
|