I would like to allow dash/hyphen in the name field
<input v-model="$parent.teacher.firstName" v-validate="'required|alpha|min:2'"
placeholder="Eva" class="bw" type="text" name="firstname"
autocomplete="teacher-firstname"/>
How can I accomplish it? I tried to add a regex like e.g. '^[a-z]+(-[a-z]+)*$' in v-validate but nothing happens
alphawithalpha_dash.