<iframe style="border: 1px solid rgba(0, 0, 0, 0.1);" width="800" height="450" src="https://embed.figma.com/proto/J0j3lwuubj1AletoTFlLFr/Untitled?page-id=0%3A1&node-id=1-5&viewport=907%2C916%2C0.73&scaling=min-zoom&content-scaling=fixed&starting-point-node-id=1%3A5&embed-host=share" allowfullscreen></iframe>
get urls data and split in the diffrent parts to get endpoint of file name given in last of url and show it .. by put in new array or variable by using -1
<template> <div class="card" v-if="checkpw"> <div class="card-header"> <span class="h3 text-primary mt-4">Production Script Files</span> </div> <ul class="list-group list-group-flush" v-for="(value, index) in urls" :key="index"> <li class="list-group-item h5"> <i class="bi bi-file-earmark-zip-fill text-primary h3 mx-2"></i> <span> {{ value }} </span> <a :href="`https://production.brighterbins.com/production/download/${value}`" class="btn btn-primary px-3 py-2" download>Download </a> </li> </ul> <!-- @click="psFileDownload(value)" --> </div> <div v-if="errormsg" class="text-danger"> <h5 class="pt-5 pt-5 text-d...
Comments
Post a Comment