How to show image on v-text-field?
21:32 01 Aug 2022

image of filesystem path name

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. image of filesystem path name, the same as the earlier image

javascript vue.js vue-component vuetify.js vuetify-datatable