@ionic/core
Version:
Base components for Ionic
25 lines (24 loc) • 644 B
JavaScript
export class Slide {
componentDidLoad() {
this.ionSlideChanged.emit();
}
componentDidUnload() {
this.ionSlideChanged.emit();
}
hostData() {
return {
class: {
'swiper-slide': true
}
};
}
static get is() { return "ion-slide"; }
static get events() { return [{
"name": "ionSlideChanged",
"method": "ionSlideChanged",
"bubbles": true,
"cancelable": true,
"composed": true
}]; }
static get style() { return "/**style-placeholder:ion-slide:**/"; }
}