[Improvement] simplify inner tag name (#395)

This commit is contained in:
neverland
2017-12-08 14:56:50 +08:00
committed by GitHub
parent 2cc5767a99
commit 3208d1bb3d
37 changed files with 199 additions and 199 deletions

View File

@@ -1,7 +1,7 @@
<template>
<van-cell-group class="van-coupon-cell">
<van-cell :title="title || '优惠券码'" :value="value" :isLink="editable" @click="$emit('click')" />
</van-cell-group>
<cell-group class="van-coupon-cell">
<cell :title="title || '优惠券码'" :value="value" :isLink="editable" @click="$emit('click')" />
</cell-group>
</template>
<script>
@@ -12,8 +12,8 @@ export default {
name: 'van-coupon-cell',
components: {
[Cell.name]: Cell,
[CellGroup.name]: CellGroup
Cell,
CellGroup
},
model: {