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
+6 -6
View File
@@ -40,19 +40,19 @@ export default {
label: '地址',
placeholder: '请输入搜索关键词',
customButton: '自定义按钮',
listenToEvents: '事件监听'
listenToEvents: '事件监听',
},
'en-US': {
label: 'Address',
placeholder: 'Placeholder',
customButton: 'Custom Action Button',
listenToEvents: 'Listen to Events'
}
listenToEvents: 'Listen to Events',
},
},
data() {
return {
value: ''
value: '',
};
},
@@ -63,7 +63,7 @@ export default {
onCancel() {
this.$toast(this.$t('cancel'));
}
}
},
},
};
</script>
+8 -8
View File
@@ -79,8 +79,8 @@ function Search(
emit(ctx, 'search', props.value);
}
emit(ctx, 'keypress', event);
}
}
},
},
};
const inheritData = inherit(ctx);
@@ -103,7 +103,7 @@ function Search(
clearable={props.clearable}
scopedSlots={{
'left-icon': slots['left-icon'],
'right-icon': slots['right-icon']
'right-icon': slots['right-icon'],
}}
{...fieldData}
/>
@@ -121,20 +121,20 @@ Search.props = {
showAction: Boolean,
shape: {
type: String,
default: 'square'
default: 'square',
},
clearable: {
type: Boolean,
default: true
default: true,
},
background: {
type: String,
default: '#fff'
default: '#fff',
},
leftIcon: {
type: String,
default: 'search'
}
default: 'search',
},
};
export default createComponent<SearchProps, SearchEvents, SearchSlots>(Search);
+20 -20
View File
@@ -6,9 +6,9 @@ test('input event', () => {
const wrapper = mount(Search, {
context: {
on: {
input: onInput
}
}
input: onInput,
},
},
});
const input = wrapper.find('input');
@@ -25,14 +25,14 @@ test('cancel event', () => {
const wrapper = mount(Search, {
propsData: {
value: 'test',
showAction: true
showAction: true,
},
context: {
on: {
input: onInput,
cancel: onCancel
}
}
cancel: onCancel,
},
},
});
const cancel = wrapper.find('.van-search__action');
@@ -50,9 +50,9 @@ test('search event', () => {
context: {
on: {
search: onSearch,
keypress: onKeypress
}
}
keypress: onKeypress,
},
},
});
const input = wrapper.find('input');
@@ -68,8 +68,8 @@ test('label slot', () => {
scopedSlots: {
label() {
return 'Custom Label';
}
}
},
},
});
expect(wrapper).toMatchSnapshot();
@@ -78,8 +78,8 @@ test('label slot', () => {
test('left-icon prop', () => {
const wrapper = mount(Search, {
propsData: {
leftIcon: 'setting-o'
}
leftIcon: 'setting-o',
},
});
expect(wrapper).toMatchSnapshot();
@@ -88,8 +88,8 @@ test('left-icon prop', () => {
test('right-icon prop', () => {
const wrapper = mount(Search, {
propsData: {
rightIcon: 'setting-o'
}
rightIcon: 'setting-o',
},
});
expect(wrapper).toMatchSnapshot();
@@ -98,8 +98,8 @@ test('right-icon prop', () => {
test('right-icon slot', () => {
const wrapper = mount(Search, {
scopedSlots: {
'right-icon': () => 'Custom Right Icon'
}
'right-icon': () => 'Custom Right Icon',
},
});
expect(wrapper).toMatchSnapshot();
@@ -109,8 +109,8 @@ test('action-text prop', () => {
const wrapper = mount(Search, {
propsData: {
actionText: 'Custom Text',
showAction: true
}
showAction: true,
},
});
expect(wrapper).toMatchSnapshot();