[Vuejs]-How do I render a pdf in a page using VueJS?

0👍

You can put pdf file to src folder and import to the component as bellow.

<template>
  <div>
    <embed style="width: 100vw; height: 100vh" :src="pdf" />
  </div>
</template>

<script setup>
import pdf from "../assets/sample.pdf";
</script>

Demo https://gn33f4.csb.app/

Leave a comment