mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
32 lines
489 B
Vue
32 lines
489 B
Vue
<template>
|
|
<div :class="`${prefix}-row`" :style="style">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'van-row',
|
|
|
|
props: {
|
|
prefix: {
|
|
type: String,
|
|
default: 'van'
|
|
},
|
|
gutter: {
|
|
type: [Number, String],
|
|
default: 0
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
style() {
|
|
const margin = `-${Number(this.gutter) / 2}px`;
|
|
return this.gutter
|
|
? { marginLeft: margin, marginRight: margin }
|
|
: {};
|
|
}
|
|
}
|
|
};
|
|
</script>
|