js 前端组件style调用

1.在对应的component文件中style后面加上需要的style名称
eg:将:style=”style” —–> :style=”[style,tab_item_style]”
在下面的props里面加上style名称
eg: tab_item_style: [String, Object]
2.在需要调用的view页面上标签后面加上style
eg: :tab_item_style=tab_item_style
在下面的sript/data/return里面填上需要的参数
eg: tab_item_style: {
fontSize: ‘20px’,
fontWeight: ‘800’
}

ps:要改swiper-item大小要通过height和sliderHeight这两个参数来改