Skip to content

Commit

Permalink
[#835] 클래스 prop명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
exemfe3 committed Jun 22, 2021
1 parent 1591e4d commit 36826d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/views/contextMenu/api/contextMenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
| | | icon-class | <컨텍스트메뉴> 항목 텍스트 앞에 위치하는 <i> 클래스 | |
| | | disabled | <컨텍스트메뉴> 항목 사용 여부 | false, true |
| | | click | <컨텍스트메뉴> 항목 클릭 시 발생하는 메소드 | |
| className | String | '' | <컨텍스트메뉴>에 지정할 클래스명 | |
| customClass | String | '' | <컨텍스트메뉴>에 지정할 클래스명 | |
4 changes: 2 additions & 2 deletions src/components/contextMenu/ContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
ref="rootMenuList"
v-model:isShow="isShow"
v-clickoutside="hide"
:class="className"
:class="customClass"
:items="items"
:style="menuStyle"
:comp="comp"
Expand Down Expand Up @@ -43,7 +43,7 @@ export default {
return true;
},
},
className: {
customClass: {
type: String,
default: '',
},
Expand Down

0 comments on commit 36826d3

Please sign in to comment.