-1👍
the best solution is convert to png or jpg file and upload only path and save image to folder.
- [Vuejs]-Render custom tag from REST API response
- [Vuejs]-Not able to retrieve data from JSON object in Vue
-1👍
Here is how I solved it.
I converted from binary to utf8 instead of to base64.
There is a huge difference bewteen
Buffer.from(binary_data, ‘binary’).toString(‘utf8’)
and
Buffer.from(binary_data, ‘binary’).toString(‘base64’)
- [Vuejs]-Binding class with VueJS and Props
- [Vuejs]-Vue js error: Property or method "smoothie" is not defined on the instance but referenced during render
Source:stackexchange.com