<template> <view style="flex-grow: 1;"> <view> <text>min-width: 500rpx</text> <view class="common" style="min-width: 500rpx;"> <text>width: 100rpx</text> </view> </view> </view> </template> <script> </script> <style> .common { width: 100rpx; height: 500rpx; background-color: red; justify-content: center; align-items: center; } </style>