mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			864 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			864 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <transition name="modal-fade">
 | |
|     <div v-if="show" class="modal-mask" transition="modal" @click="close">
 | |
|       <i class="ion-android-close modal--close" @click="close"></i>
 | |
|       <div class="modal-container" :class="className" @click.stop>
 | |
|         <slot />
 | |
|       </div>
 | |
|     </div>
 | |
|   </transition>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| export default {
 | |
|   props: {
 | |
|     closeOnBackdropClick: {
 | |
|       type: Boolean,
 | |
|       default: true,
 | |
|     },
 | |
|     show: Boolean,
 | |
|     onClose: {
 | |
|       type: Function,
 | |
|       required: true,
 | |
|     },
 | |
|     className: {
 | |
|       type: String,
 | |
|       default: '',
 | |
|     },
 | |
|   },
 | |
|   mounted() {
 | |
|     document.addEventListener('keydown', e => {
 | |
|       if (this.show && e.keyCode === 27) {
 | |
|         this.onClose();
 | |
|       }
 | |
|     });
 | |
|   },
 | |
|   methods: {
 | |
|     close() {
 | |
|       if (this.closeOnBackdropClick) {
 | |
|         this.onClose();
 | |
|       }
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | 
