chore: fix blurred typo (#8916)
This commit is contained in:
+1
-1
@@ -282,7 +282,7 @@ Field support all native events of input tag
|
||||
| --- | --- | --- |
|
||||
| update:model-value | Emitted when input value changed | _value: string_ |
|
||||
| focus | Emitted when input is focused | _event: Event_ |
|
||||
| blur | Emitted when input is blured | _event: Event_ |
|
||||
| blur | Emitted when input is blurred | _event: Event_ |
|
||||
| clear | Emitted when the clear icon is clicked | _event: MouseEvent_ |
|
||||
| click | Emitted when component is clicked | _event: MouseEvent_ |
|
||||
| click-input | Emitted when the input is clicked | _event: MouseEvent_ |
|
||||
|
||||
@@ -312,7 +312,7 @@ test('should allow to format value with formatter prop', () => {
|
||||
expect(wrapper.emitted('update:modelValue')[1][0]).toEqual('efg');
|
||||
});
|
||||
|
||||
test('should trigger format after bluring when format-trigger prop is blur', async () => {
|
||||
test('should trigger format after blurring when format-trigger prop is blur', async () => {
|
||||
const wrapper = mount(Field, {
|
||||
props: {
|
||||
modelValue: 'abc123',
|
||||
|
||||
Reference in New Issue
Block a user