optional validation vuetify

Solutions on MaxInterview for optional validation vuetify by the best coders in the world

showing results for - "optional validation vuetify"
Fionn
10 Jun 2019
1rules: [
2  v => {
3    if (v) return v.length <= 50 || 'maximum 50 characters';
4    else return true;
5  },
6],
7