chore: add trailingComma
This commit is contained in:
@@ -27,7 +27,7 @@ function Divider(
|
||||
class={bem({
|
||||
dashed: props.dashed,
|
||||
hairline: props.hairline,
|
||||
[`content-${props.contentPosition}`]: slots.default
|
||||
[`content-${props.contentPosition}`]: slots.default,
|
||||
})}
|
||||
{...inherit(ctx, true)}
|
||||
>
|
||||
@@ -40,12 +40,12 @@ Divider.props = {
|
||||
dashed: Boolean,
|
||||
hairline: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
default: true,
|
||||
},
|
||||
contentPosition: {
|
||||
type: String,
|
||||
default: 'center'
|
||||
}
|
||||
default: 'center',
|
||||
},
|
||||
};
|
||||
|
||||
export default createComponent<DividerProps>(Divider);
|
||||
|
||||
Reference in New Issue
Block a user