Prevent form submitting when pressing enter from a text input, using Vue.js

后端 未结 11 1500
轻奢々
轻奢々 2020-12-13 12:16

I am using Vue.js in my app and have a text input within a form

11条回答
  •  攒了一身酷
    2020-12-13 13:11

    For those simply looking to prevent a form submitting on enter, but not wanting to trigger any method on the input, you can simply do:

    
    

    Or on a custom component include the native modifier:

    
    

    Beautifully readable and succinct.

提交回复
热议问题