mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
14 lines
189 B
TypeScript
14 lines
189 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
templateUrl: 'main.html'
|
|
})
|
|
class E2EApp {
|
|
|
|
testClick(ev) {
|
|
console.log('CLICK!', ev.target.tagName, ev.target.textContent.trim());
|
|
}
|
|
|
|
}
|