fix: code style

This commit is contained in:
陈嘉涵
2017-08-25 15:57:38 +08:00
parent 43693fa781
commit e7b1d70900
18 changed files with 64 additions and 80 deletions

View File

@@ -5,21 +5,21 @@
</template>
<script>
export default {
name: 'van-badge-group',
export default {
name: 'van-badge-group',
props: {
// 当前激活 tab 面板的 key
activeKey: {
type: [Number, String],
default: 0
}
},
data() {
return {
badges: []
};
props: {
// 当前激活 tab 面板的 key
activeKey: {
type: [Number, String],
default: 0
}
};
},
data() {
return {
badges: []
};
}
};
</script>