抖音小程序端
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.
 
 
 
 

29 lines
480 B

<template>
<view
class='tab-pane-item'
>
<slot></slot>
</view>
</template>
<script>
export default {
name:'TabPane',
props:{
current:{
default:0,
type:Number
}
}
}
</script>
<style lang="stylus">
.tab-pane-item
width: 100%;
height 100%
display: inline-block
white-space: initial;
vertical-align: top;
font-size: 24upx;
box-sizing: border-box;
overflow: auto
</style>