0👍
You can use the following code to store the text in a file like so:
f = open("yourFileName.txt", "a")
f.write("Insert text here")
f.close()
And i recommend you to use fpdf to save and edit pdf files
- [Vuejs]-How can I pass vuex getter to module which isn't vuejs component, but keep it reactive?
- [Vuejs]-Authorization using Vue.js and Express,js
Source:stackexchange.com