Skip to content

Commit

Permalink
[#639][3.0] Icon 컴포넌트 setup() 내부 불필요한 async 제거
Browse files Browse the repository at this point in the history
###########
- setup() 내부 불필요한 async 제거
  • Loading branch information
BoKyeongShin committed Dec 3, 2020
1 parent 154168c commit 76527b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/icon/Icon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ export default {
'context-menu': null,
},
setup(props, { emit }) {
const onClick = async (e) => {
const onClick = (e) => {
emit('click', e);
};
const onDblClick = async (e) => {
const onDblClick = (e) => {
emit('dbl-click', e);
};
const onContextMenu = async (e) => {
const onContextMenu = (e) => {
emit('context-menu', e);
};
return {
Expand Down

0 comments on commit 76527b2

Please sign in to comment.