Answer the question
In order to leave comments, you need to log in
How to listen to Enter from the keyboard in a modal window (component)?
There is a component - a modal window with a notification. In the message box and the "OK" button.
Vue.component( 'alert', {
template: '
<div class = "alert">
<slot>
<div class = "modal-content"></div>
</slot>
<button @click="close"> ОК </button>
</div>
',
methods: {
close: function ( e ) {
e.stopPropagation();
this.$emit( 'close' );
}
} )
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question