I am figuring out how I can download a text file on the client side using vuejs. I have searched and all what I have done is to install Filesaver in laravel application using npm install file-saver --save I am also not sure how I will import it in my component or include it in the app.js file. For the table am able to add a button for calling the function but this does not work.
<a href="#" @click="SaveTextFile()"></a>
Method:
function SaveTextFile() {
let file = new Blob(['test'], { type: 'text/plain;charset=utf-8' });
saveAs(blob, 'test.txt')
}
Any idea how I can download or use a different approach in Vue Js