Created
September 13, 2017 07:44
-
-
Save faforty/8abfa709e63e8a99ac667f9551e8b637 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
handleClickOutside (event) { | |
const uiModalBox = this.$refs.uiModalBox | |
if (!event.path.includes(uiModalBox) && !event.path.includes(this.el) && this.isShow == true) { | |
this.close() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment