tabPane.vue 475 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view
  3. class='tab-pane-item'>
  4. <slot></slot>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. name:'TabPane',
  10. props:{
  11. current:{
  12. default:0,
  13. type:Number
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="stylus">
  19. .tab-pane-item
  20. width: 100%;
  21. height 100%
  22. display: inline-block
  23. white-space: initial;
  24. vertical-align: top;
  25. font-size: 24upx;
  26. box-sizing: border-box;
  27. overflow: auto
  28. </style>