'show the binding file image with vue formulate

I have a question, please. I would like to show the file that I attach into the input file, I saw in the documentation the example, that the image shows into the object

export default { data() { return { formValues: {}, } } }
<div>{{formValues}}</div>


<table>
  <tbody>
    <FormulateForm v-model="formValues">
      <tr>
        <td>
          <FormulateInput type="file" name="file" label="Select your documents to upload" help="Select one or more PDFs to upload" validation="mime:application/pdf" />

        </td>
      </tr>
    </FormulateForm>
  </tbody>
</table>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source