Add events emitted by OverlayPanel

This PR adds the emits: ['show', 'hide'] to OverlayPanel component.
Without these vue will throw warnings in the console
Also in vue js docs, they encourage to add the emits
pull/1529/head
Melek REBAI 2021-09-09 17:59:28 +01:00 committed by GitHub
parent 221a3f827d
commit 0a601257de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -51,6 +51,7 @@ export default {
default: null
}
},
emits: ['show', 'hide'],
data() {
return {
visible: false