l***@163.com
l***@163.com
  • 发布:2021-01-27 21:44
  • 更新:2021-01-27 22:52
  • 阅读:1245

nvue不支持百分比,为什么uni-ui里面的代码又写了百分比呢

分类:nvue

nvue不支持百分比,为什么uni-ui里面的代码又写了百分比呢

如uni-grid-item组件里面有这样的代码:

.uni-grid-item__box {  
        /* #ifndef APP-NVUE */  
        display: flex;  
        width: 100%;  
        /* #endif */  
        position: relative;  
        flex: 1;  
        flex-direction: column;  
        // justify-content: center;  
        // align-items: center;  
    }
2021-01-27 21:44 负责人:无 分享
已邀请:
DCloud_UNI_Anne

DCloud_UNI_Anne

这里写了条件编译,不是NVUE才用这个百分比的宽

l***@163.com

l***@163.com (作者)

哦,俺大意了 ,谢谢

l***@163.com

l***@163.com (作者)

<view class="box">  
<view class="item">hello</view>  
<view class="item">hello</view>  
<view class="item">hello</view>  
</view>  
<style>  
.box{  
display: flex;  
flex-direction:row;  
}  
.item{  
flex: 0 1 30%;  
}  
</style>

在nvue中,这种情况下的项目item中的flex第三个参数是否可以采用百分比呢。

该问题目前已经被锁定, 无法添加新回复