[new feature] Tag: add click event (#2693)

This commit is contained in:
neverland 2019-02-06 20:44:40 +08:00 committed by GitHub
parent 9c5e5b8158
commit 305dc19ceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 0 deletions

View File

@ -81,3 +81,9 @@ Vue.use(Tag);
| name | Description |
|------|------|
| - | Default slot |
### Event
| Event | Description | Arguments |
|------|------|------|
| click | Triggered when clicked | - |

View File

@ -0,0 +1,16 @@
import Tag from '..';
import { mount } from '../../../test/utils';
test('click event', () => {
const click = jest.fn();
const wrapper = mount(Tag, {
context: {
on: {
click
}
}
});
wrapper.trigger('click');
expect(click.mock.calls.length).toEqual(1);
});

View File

@ -88,3 +88,9 @@ Vue.use(Tag);
| 名称 | 说明 |
|------|------|
| - | 自定义 Tag 显示内容 |
### Event
| 事件名 | 说明 | 参数 |
|------|------|------|
| click | 点击时触发 | - |