Skip to content

Commit

Permalink
fix: 修复ts 类型any错误
Browse files Browse the repository at this point in the history
  • Loading branch information
yuntian001 committed Sep 14, 2022
1 parent 600b914 commit e47193f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/meWangEditor/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
@on-max-length="emit('onMaxLength', $event)"
@on-focus="emit('onFocus', $event)"
@on-blur="emit('onBlur', $event)"
@custom-alert="(...args) => emit('customAlert', ...args)"
@custom-paste="(...args) => emit('customPaste', ...args)"
@custom-alert="(...args:any[]) => emit('customAlert', ...args)"
@custom-paste="(...args:any[]) => emit('customPaste', ...args)"
/>
</div>
</template>
Expand Down

0 comments on commit e47193f

Please sign in to comment.