You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
689 B
Vue

2 months ago
<template>
<swiper-item>
<slot />
</swiper-item>
</template>
<script>
import props from './props.js';
/**
* TabsItem tabs标签组件的自组件
* @description tabs标签组件在标签多的时候可以配置为左右滑动标签少的时候可以禁止滑动 该组件的一个特点是配置为滚动模式时激活的tab会自动移动到组件的中间位置
* @tutorial https://www.uviewui.com/components/tabs.html
* @property {type} prop_name
* @event {Function()}
* @example
*/
export default {
name: 'u-tabs-item',
mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
data() {
return {
}
}
}
</script>
<style>
</style>