chore: prettier source code

This commit is contained in:
chenjiahan
2020-04-02 15:36:02 +08:00
parent 340c56b3b5
commit 2fb5cca49a
93 changed files with 272 additions and 283 deletions
+2 -2
View File
@@ -35,10 +35,10 @@ export default createComponent({
let { children } = this;
if (!checked) {
children = children.filter(item => !item.checked);
children = children.filter((item) => !item.checked);
}
const names = children.map(item => item.name);
const names = children.map((item) => item.name);
this.$emit('input', names);
},
},