
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
pdf-viewer-vue
Advanced tools
PDF viewer component for Vue 2 and Vue 3
This package is compatible with both Vue 2 and Vue 3. The default exported build is for Vue 3, but dist
directory also contains a build for Vue 2 (dist/vue2-pdf-viewer.js
). See the example in Usage section.
Depending on the environment, the package can be installed in one of the following ways:
npm install pdf-viewer-vue
yarn add pdf-viewer-vue
<script src="https://unpkg.com/pdf-viewer-vue"></script>
<template>
<div>
<h1>File</h1>
<PDFViewer
:source="url"
style="height: 100vh; width: 100vw"
@download="handleDownload"
/>
<h1>Base64</h1>
<PDFViewer
:source="base64"
style="height: 100vh; width: 100vw"
@download="handleDownload"
/>
</div>
</template>
<script>
import PDFViewer from 'pdf-viewer-vue'
// OR THE FOLLOWING IMPORT FOR VUE 2
// import PDFViewer from 'pdf-viewer-vue/dist/vue2-pdf-viewer'
export default {
components: {
PDFViewer,
},
data() {
return {
url: '<PDF_URL>',
base64: '<BASE64_ENCODED_PDF>',
}
},
}
</script>
Name | Type | Accepted values | Description |
---|---|---|---|
source | string | document URL or Base64 | source of document |
controls | string[] | [ 'download', 'print', 'rotate', 'zoom', 'catalog', 'switchPage', ] | visible controls |
loading-text | string | - | loading text |
rendering-text | string | - | rendering text |
settings | { defaultZoom: number } | - | default settings |
Name | Value | Description |
---|---|---|
download | {source: string; filename: string;} | pdf file base info |
loaded | {total: number} | document load completed |
loading-failed | Error | failed to load document |
rendered | - | finished rendering the document |
rendering-failed | Error | failed to render document |
TODO: CodeSandbox or JSFiddle
MIT License. Please see LICENSE file for more information.
FAQs
PDF viewer component for Vue 2 and Vue 3
The npm package pdf-viewer-vue receives a total of 1,718 weekly downloads. As such, pdf-viewer-vue popularity was classified as popular.
We found that pdf-viewer-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.