test.vue 484 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="test-home">
  3. <xt-swiper-cell :right="[{ text: '完成' }, { text: '删除', backgroundColor: '#E53A40' }]" :content="{ title: '测试标题', desc: '测试描述' }" />
  4. </view>
  5. </template>
  6. <script>
  7. import XtSwiperCell from '../../components/xt-swiperCell/xt-swiperCell.vue'
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. components: {
  14. XtSwiperCell
  15. }
  16. }
  17. </script>
  18. <style>
  19. .test-home {
  20. padding: 100upx 0;
  21. }
  22. </style>