UNPKG

@tarojs/components

Version:
28 lines (27 loc) 690 B
// eslint-disable-next-line @typescript-eslint/no-unused-vars import { Component, h, Prop, Host } from '@stencil/core'; export class SwiperItem { render() { return (h(Host, { class: 'swiper-slide', "item-id": this.itemId })); } static get is() { return "taro-swiper-item-core"; } static get properties() { return { "itemId": { "type": "string", "mutable": false, "complexType": { "original": "string", "resolved": "string", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "" }, "attribute": "item-id", "reflect": false } }; } }