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
+5 -5
View File
@@ -14,13 +14,13 @@ export default createComponent({
detailRows: Number,
searchResult: Array,
detailMaxlength: Number,
showSearchResult: Boolean
showSearchResult: Boolean,
},
computed: {
shouldShowSearchResult() {
return this.focused && this.searchResult && this.showSearchResult;
}
},
},
methods: {
@@ -71,12 +71,12 @@ export default createComponent({
return <div domPropsInnerHTML={text} />;
}
}
},
}}
/>
));
}
}
},
},
render() {
@@ -100,5 +100,5 @@ export default createComponent({
{this.genSearchResult()}
</Cell>
);
}
},
});