| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="">
- <uni-group title="分组1" top="20">
- <uni-list>
- <uni-list-item title="列表文字" note="列表描述信息"></uni-list-item>
- </uni-list>
- </uni-group>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- </style>
|