9433cfb9创建于 2025年12月31日历史提交
<template>
  <view style="flex-grow: 1;">
    <view>
      <text>min-width: 250px</text>
      <view class="common" style="min-width: 250px;">
        <text>width: 50px</text>
      </view>
    </view>
  </view>
</template>

<script>

</script>

<style>
  .common {
    width: 50px;
    height: 250px;
    background-color: red;
    justify-content: center;
    align-items: center;
  }
</style>