issue-2199.uvue 553 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view>
  3. <list-view>
  4. <list-item>
  5. <view class="title">
  6. 1
  7. </view>
  8. </list-item>
  9. <Item>
  10. <view class="title">
  11. 2
  12. </view>
  13. </Item>
  14. </list-view>
  15. </view>
  16. </template>
  17. <script>
  18. import Item from './issue-2199-item.uvue'
  19. export default {
  20. components: {
  21. Item
  22. },
  23. data() {
  24. },
  25. onLoad() {
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style>
  32. .title {
  33. text-align: center;
  34. justify-content: center;
  35. align-items: center;
  36. }
  37. </style>