How to show image on v-text-field?

data(){
form: {
gambar_sertifikat:null,
}
}
computed
url() {
if (!this.gambar_sertifikat) return;
return URL.createObjectURL(this.gambar_sertifikat);
},
Result: my photo doesn't show up on the field.
