-1👍
This worked for me…
HTML:
<div :src="'data:application/pdf;base64,'+doc">
</div>
PS: you can use <iframe></iframe> instead of div
JS:
<script>
data():{
doc: 'base64 format here'
}
</script>
- [Vuejs]-Typescript TypeError: draggable is not a function
- [Vuejs]-How to start a project using meteor.js and vue.js
Source:stackexchange.com