2018-09-21 16:04:59 +08:00

39 lines
738 B
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
relations: {
'../row/index': {
type: 'ancestor'
}
},
props: {
span: Number,
offset: Number
},
data: {
style: ''
},
computed: {
classes(): string {
const { span, offset } = this.data;
return this.classNames('custom-class', 'van-col', {
[`van-col--${span}`]: span,
[`van-col--offset-${offset}`]: offset
});
}
},
methods: {
setGutter(gutter: number) {
const padding = `${gutter / 2}px`;
const style = gutter ? `padding-left: ${padding}; padding-right: ${padding};` : '';
if (style !== this.data.style) {
this.setData({ style });
}
}
}
});