Validação opcional Vuetify
rules: [
v => {
if (v) return v.length <= 50 || 'maximum 50 characters';
else return true;
},
],
two2
rules: [
v => {
if (v) return v.length <= 50 || 'maximum 50 characters';
else return true;
},
],