mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
15 lines
176 B
TypeScript
15 lines
176 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html',
|
|
config: {
|
|
scrollAssist: true
|
|
}
|
|
})
|
|
class E2EApp {
|
|
reload() {
|
|
window.location.reload();
|
|
}
|
|
}
|