// HTML <input :maxlength="max"/> // Max Amount of characters in this input = 20 // JS export default { data(){ return { max: 20 } } }