[bugfix] Layout: offset not work (#615)

This commit is contained in:
neverland 2018-09-20 19:00:51 +08:00 committed by GitHub
parent e6b04e56d0
commit ce3a45d8cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
dist/col/index.js vendored
View File

@ -17,7 +17,7 @@ create({
const { span, offset } = this.data;
return this.classNames('custom-class', 'van-col', {
[`van-col--${span}`]: span,
[`van-col--${offset}`]: offset
[`van-col--offset-${offset}`]: offset
});
}
},

View File

@ -17,7 +17,7 @@ create({
const { span, offset } = this.data;
return this.classNames('custom-class', 'van-col', {
[`van-col--${span}`]: span,
[`van-col--${offset}`]: offset
[`van-col--offset-${offset}`]: offset
});
}
},