fix(Grid): fix square item gutter bug (#3231)

This commit is contained in:
Lindy 2020-06-03 17:50:02 +08:00 committed by GitHub
parent 29f1628c00
commit 107782364a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ VantComponent({
styleWrapper.push(`padding-right: ${gutterValue}`);
const index = children.indexOf(this);
if (index >= columnNum) {
if (index >= columnNum && !square) {
styleWrapper.push(`margin-top: ${gutterValue}`);
}
}