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.

44 lines
1.1 KiB

2 weeks ago
  1. <template>
  2. <view class="content">
  3. <up-collapse
  4. :value="['2']"
  5. :border="false"
  6. >
  7. <up-collapse-item
  8. title="文档指南"
  9. >
  10. <view class="textbg">
  11. <text class="u-collapse-content">涵盖uniapp各个方面给开发者方向指导和设计理念让您茅塞顿开一马平川</text>
  12. </view>
  13. </up-collapse-item>
  14. <up-collapse-item
  15. title="组件全面"
  16. >
  17. <view class="textbg">
  18. <text class="u-collapse-content">众多组件覆盖开发过程的各个需求组件功能丰富多端兼容让您快速集成开箱即用</text>
  19. </view>
  20. </up-collapse-item>
  21. <up-collapse-item
  22. name="2"
  23. title="众多利器"
  24. >
  25. <view class="textbg">
  26. <text class="u-collapse-content">众多的贴心小工具是您开发过程中召之即来的利器让您飞镖在手百步穿杨</text>
  27. </view>
  28. </up-collapse-item>
  29. </up-collapse>
  30. </view>
  31. </template>
  32. <script>
  33. </script>
  34. <style lang="scss" scoped>
  35. .textbg {
  36. background: #F4F4F4;
  37. border-radius: 10rpx;
  38. padding: 20rpx;
  39. }
  40. </style>