0

I need a way to preview a word document from the website I'm building without having to download it first. I'm using Vue.js to build it

  • 1
    I'm not sure if OP is looking for a library or a native way to preview word documents but in either case this question is not fit for SO, I can think of a few other stack exchanges that would be a better fit – Nino Filiu Feb 17 '21 at 13:37

1 Answers1

0

You can use iframe to do this.

<iframe src="https://docs.google.com/gview?url=<file_url>&embedded=true"></iframe>

Replace <file_url> with you document file url.