issue-15701.uvue 283 B

12345678910111213141516171819
  1. <template>
  2. <list-view>
  3. <list-item class="aaa">
  4. </list-item>
  5. </list-view>
  6. </template>
  7. <script setup>
  8. </script>
  9. <style lang="scss" scoped>
  10. .aaa {
  11. flex-direction: row;
  12. flex-wrap: wrap;
  13. // iOS平台 margin 为负数时可能引起应用闪退
  14. margin: -10px;
  15. }
  16. </style>