mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Layout: gutter not work when dynamic render (#536)
This commit is contained in:
parent
737441db38
commit
743001a8ab
12
dist/row/index.js
vendored
12
dist/row/index.js
vendored
@ -3,7 +3,13 @@ import { create } from '../common/create';
|
||||
create({
|
||||
relations: {
|
||||
'../col/index': {
|
||||
type: 'descendant'
|
||||
type: 'descendant',
|
||||
|
||||
linked(target) {
|
||||
if (this.data.gutter) {
|
||||
target.setGutter(this.data.gutter);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -15,7 +21,9 @@ create({
|
||||
},
|
||||
|
||||
ready() {
|
||||
this.setGutter();
|
||||
if (this.data.gutter) {
|
||||
this.setGutter();
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
@ -3,7 +3,13 @@ import { create } from '../common/create';
|
||||
create({
|
||||
relations: {
|
||||
'../col/index': {
|
||||
type: 'descendant'
|
||||
type: 'descendant',
|
||||
|
||||
linked(target) {
|
||||
if (this.data.gutter) {
|
||||
target.setGutter(this.data.gutter);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@ -15,7 +21,9 @@ create({
|
||||
},
|
||||
|
||||
ready() {
|
||||
this.setGutter();
|
||||
if (this.data.gutter) {
|
||||
this.setGutter();
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user