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
@@ -55,31 +55,31 @@ function CouponCell(
}
CouponCell.model = {
prop: 'chosenCoupon'
prop: 'chosenCoupon',
};
CouponCell.props = {
title: String,
coupons: {
type: Array,
default: () => []
default: () => [],
},
currency: {
type: String,
default: '¥'
default: '¥',
},
border: {
type: Boolean,
default: true
default: true,
},
editable: {
type: Boolean,
default: true
default: true,
},
chosenCoupon: {
type: Number,
default: -1
}
default: -1,
},
};
export default createComponent<CouponCellProps>(CouponCell);