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
+4 -4
View File
@@ -13,13 +13,13 @@ export default createComponent({
dot: Boolean,
info: [Number, String],
title: String,
disabled: Boolean
disabled: Boolean,
},
computed: {
select() {
return this.index === +this.parent.activeKey;
}
},
},
methods: {
@@ -32,7 +32,7 @@ export default createComponent({
this.parent.$emit('input', this.index);
this.parent.$emit('change', this.index);
route(this.$router, this);
}
},
},
render() {
@@ -47,5 +47,5 @@ export default createComponent({
</div>
</a>
);
}
},
});