GITLAB
frontend
/ zui-uniapp
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
18f0b61a6f91af9cb143ae2830455a441356975e
Authored by
刘汉宸
2020-04-17 16:07:22 +0800
1 parent
25266b4c
Exists in
master
修复Cell点击事件
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
components/cell/index.vue
Side-by-side Diff
Inline Diff
components/cell/index.vue
Wrap text
Diff comments
View file @
18f0b61
...
...
@@ -59,9 +59,7 @@ export default {
59
59
},
60
60
methods: {
61
61
onClick: function() {
62
- if (this.$listeners["click"]) {
63
- this.$emit("click");
64
- }
62
+ this.$emit("click");
65
63
}
66
64
}
67
65
};
...
...