-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Closed
Description
I excepted <div @mousedown.prevent>
would work, but no luck :(
<!DOCTYPE html>
<html>
<body>
<script src="node_modules/vue/dist/vue.js"></script>
<h1>prevent blur form textarea</h1>
<textarea v-el:text></textarea>
<p @mousedown.prevent>@mousedown.prevent</p>
<p @mousedown="$event.preventDefault()">e.preventDefault()</p>
<script>
new Vue({
el: 'html',
ready: function() {
this.$els.text.focus();
}
});
</script>
</body>
</html>
Metadata
Metadata
Assignees
Labels
No labels