Can anyone assist me in figuring out how to change the append outer icon based on 2 conditions? I've attempted using the code below but it's not working. Also, is there a way to determine if the input is a NUMBER within the component?
<v-text-field
flat
solo
maxlength=16
:append-outer-icon="form.ktp.length !== 16 && isInteger(form.ktp) ? '' : 'mdi-checkbox-marked-circle'"
v-model="form.ktp"
></v-text-field>