mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
32 lines
526 B
TypeScript
32 lines
526 B
TypeScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
relation: {
|
|
name: 'col',
|
|
type: 'descendant',
|
|
current: 'row',
|
|
linked(target) {
|
|
const { gutter } = this.data;
|
|
|
|
if (gutter) {
|
|
target.setData({ gutter });
|
|
}
|
|
},
|
|
},
|
|
|
|
props: {
|
|
gutter: {
|
|
type: Number,
|
|
observer: 'setGutter',
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
setGutter() {
|
|
this.getRelationNodes('../col/index').forEach((col) => {
|
|
col.setData(this.data.gutter);
|
|
});
|
|
},
|
|
},
|
|
});
|