You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< swiper -item >
< slot / >
< / s w i p e r - i t e m >
< / template >
< script >
import { props } from './props' ;
import { mpMixin } from '../../libs/mixin/mpMixin' ;
import { mixin } from '../../libs/mixin/mixin' ;
/**
* TabsItem tabs标签组件的自组件
* @description tabs标签组件, 在标签多的时候, 可以配置为左右滑动, 标签少的时候, 可以禁止滑动。 该组件的一个特点是配置为滚动模式时, 激活的tab会自动移动到组件的中间位置。
* @tutorial https://ijry.github.io/uview-plus/components/tabs.html
* @property {type} prop_name
* @event {Function()}
* @example
*/
export default {
name : 'u-tabs-item' ,
mixins : [ mpMixin , mixin , props ] ,
data ( ) {
return {
}
}
}
< / script >
< style >
< / style >