issue-2199.uvue 594 字节
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
<template>
  <view>
    <list-view>
      <list-item>
        <view class="title">
          1
        </view>
      </list-item>
      <Item>
        <view class="title">
          2
        </view>
      </Item>
    </list-view>
  </view>
</template>

<script>
  import Item from './issue-2199-item.uvue'

  export default {
    components: {
      Item
    },
    data() {
    },
    onLoad() {

    },
    methods: {

    }
  }
</script>

<style>
  .title {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
</style>