I am using vue-the-mask and I have a simple name field. All I want is for it to only allow letters. I am not very good with regex so I'd really appreciate some help. Thanks.
<input type="text" v-model="cardName" v-mask="/[A-Za-z]/">
Currently that is not allowing any characters in the input field.