mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
20 lines
250 B
TypeScript
20 lines
250 B
TypeScript
import { Component } from '@stencil/core';
|
|
|
|
|
|
@Component({
|
|
tag: 'ion-slide',
|
|
styleUrl: 'slide.scss'
|
|
})
|
|
export class Slide {
|
|
|
|
hostData() {
|
|
return {
|
|
class: {
|
|
'slide-zoom': true,
|
|
'swiper-slide': true
|
|
}
|
|
};
|
|
}
|
|
|
|
}
|