I need assistance with enabling users to download a file from my website. The variable item.upload_attachment
holds the link for the file, such as
localhost:8000/media/uploads/poppy.docx
. I want to make this link clickable so that users can easily download it. Can I wrap it in an <a></a>
tags?
index.vue
<template v-slot:item.upload_attachment="{ item }">
<span>
{{ item.upload_attachment}}
</span>
</template>