We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone
Download not working.
My code: HTML
<download-csv @click="exportGraph" class="btn btn-success" :data="wellsExporteds" name="Lista de Poços.csv" >Exportar Póleo</download-csv>
SCRIPT
<script> import exportCsv from "../plugins/exportCsv"; methods: { async exportGraph() { let exportWellId = new Array(); exportWellId.push(this.idwell); const exportPoil = axios.create({ withCredentials: true }); exportPoil .post("http://localhost:8000/gerenciamento/ExportarPoleo", { well_ids: exportWellId }) .then(response => { this.wellsExporteds = response.data; console.log(this.wellsExporteds); }); } } </script>
NUXT CONFIG plugins: ["~/plugins/main.js", "~/plugins/exportCsv.js"],
plugins: ["~/plugins/main.js", "~/plugins/exportCsv.js"],
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everyone
Download not working.
My code:
HTML
SCRIPT
NUXT CONFIG
plugins: ["~/plugins/main.js", "~/plugins/exportCsv.js"],
The text was updated successfully, but these errors were encountered: