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