[Vuejs]-Is there any way I can open a word document from my website on browser

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.

Leave a comment