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
+5 -5
View File
@@ -28,7 +28,7 @@ function Notify(
) {
const style = {
color: props.color,
background: props.background
background: props.background,
};
return (
@@ -55,16 +55,16 @@ Notify.props = {
getContainer: [String, Function],
type: {
type: String,
default: 'danger'
default: 'danger',
},
color: {
type: String,
default: WHITE
default: WHITE,
},
duration: {
type: Number,
default: 3000
}
default: 3000,
},
};
export default createComponent<NotifyProps>(Notify);