chore: add trailingComma

This commit is contained in:
陈嘉涵
2020-01-19 11:57:09 +08:00
parent e841175fe8
commit 389d68884d
269 changed files with 2706 additions and 2702 deletions
+7 -7
View File
@@ -97,7 +97,7 @@ function ActionSheet(
return [
<span class={bem('name')}>{item.name}</span>,
item.subname && <span class={bem('subname')}>{item.subname}</span>
item.subname && <span class={bem('subname')}>{item.subname}</span>,
];
}
@@ -162,24 +162,24 @@ ActionSheet.props = {
closeOnClickAction: Boolean,
round: {
type: Boolean,
default: true
default: true,
},
closeIcon: {
type: String,
default: 'cross'
default: 'cross',
},
safeAreaInsetBottom: {
type: Boolean,
default: true
default: true,
},
overlay: {
type: Boolean,
default: true
default: true,
},
closeOnClickOverlay: {
type: Boolean,
default: true
}
default: true,
},
};
export default createComponent<ActionSheetProps>(ActionSheet);