uniapp uni-data-checkbox使用wrap属性换行失效

571 阅读1分钟

问题

使用uniapp开发app,使用uni-data-checkbox组件单选项有点多换行了,很丑,使用wrap属性强制不换行失效

解决方法

通过修改css样式到达不换行的效果,需要属性穿透和 !important一起使用才能生效

    ::v-deep {
        .checklist-group {
            // background-color: pink;
            // display: flex !important;
            // flex-wrap: nowrap !important;
            .checklist-box {
                margin-right: 10rpx !important;
            }
        }
    }