Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
<div id="app">
<textarea v-test>текст</textarea>
</div>
Vue.directive('test', {
bind (el) {
el.addEventListener('keyup', (e) => {
if (e.keyCode !== 13) {
return;
}
// Нажат Enter и клавиша отпущена
console.log(e);
});
}
});
new Vue({
el: "#app",
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question