[improvement] CouponCell: add border prop (#1993)

This commit is contained in:
neverland
2018-10-29 18:04:09 +08:00
committed by GitHub
parent edaad55e30
commit 917473aaff
3 changed files with 7 additions and 1 deletions
+5 -1
View File
@@ -1,5 +1,5 @@
<template>
<cell-group :class="b()">
<cell-group :class="b()" :border="border">
<cell
:title="title || $t('title')"
:value="value"
@@ -21,6 +21,10 @@ export default create({
props: {
title: String,
border: {
type: Boolean,
default: true
},
coupons: {
type: Array,
default: () => []