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.
30 lines
480 B
30 lines
480 B
|
4 years ago
|
<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>
|