12345678910111213141516171819202122232425 |
- <template>
- <view class="test-home">
- <xt-swiper-cell :right="[{ text: '完成' }, { text: '删除', backgroundColor: '#E53A40' }]" :content="{ title: '测试标题', desc: '测试描述' }" />
- </view>
- </template>
- <script>
- import XtSwiperCell from '../../components/xt-swiperCell/xt-swiperCell.vue'
- export default {
- data() {
- return {
- }
- },
- components: {
- XtSwiperCell
- }
- }
- </script>
- <style>
- .test-home {
- padding: 100upx 0;
- }
- </style>
|