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.
|
|
<template> <view class="content"> <up-collapse :value="['2']" :border="false" > <up-collapse-item title="文档指南" > <view class="textbg"> <text class="u-collapse-content">涵盖uniapp各个方面,给开发者方向指导和设计理念,让您茅塞顿开,一马平川</text> </view> </up-collapse-item> <up-collapse-item title="组件全面" > <view class="textbg"> <text class="u-collapse-content">众多组件覆盖开发过程的各个需求,组件功能丰富,多端兼容。让您快速集成,开箱即用</text> </view> </up-collapse-item> <up-collapse-item name="2" title="众多利器" > <view class="textbg"> <text class="u-collapse-content">众多的贴心小工具,是您开发过程中召之即来的利器,让您飞镖在手,百步穿杨</text> </view> </up-collapse-item> </up-collapse> </view> </template>
<script> </script>
<style lang="scss" scoped> .textbg { background: #F4F4F4; border-radius: 10rpx; padding: 20rpx; } </style>
|