UNPKG

torn-weex-flymeui

Version:

A Flyme Style UI library based on Weex for Creator.

42 lines (41 loc) 760 B
import VALUE from 'weex-flymeui/lib/common/variable-type'; export default { name: 'FmSlider', desc: '轮播组件', slots: null, props: { items: { type: VALUE.ARRAY, desc: '数据源', props: { min: 1, inner: { src: { type: VALUE.STRING, desc: '图片或者 act 的链接' } } }, default: [] }, autoPlay: { type: VALUE.BOOLEAN, desc: '是否自动播放', default: false }, interval: { type: VALUE.NUMBER, desc: '自动播放间隔时间', default: '4000' } }, events: { fmSliderItemClicked: { desc: '内容被点击' } }, size: { width: 1080, height: 516 } };