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
@@ -267,7 +267,7 @@ test('formatter prop', () => {
const wrapper = mount(Field, {
propsData: {
value: 'abc123',
formatter: value => value.replace(/\d/g, ''),
formatter: (value) => value.replace(/\d/g, ''),
},
});
@@ -301,7 +301,7 @@ test('name prop', () => {
expect(wrapper).toMatchSnapshot();
});
test('call focus method before mounted', done => {
test('call focus method before mounted', (done) => {
mount(Field, {
created() {
this.focus();