Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue.js pdf viewer
npm install --save vue-pdf
<template>
<pdf src="./static/relativity.pdf" style="width:50%"></pdf>
</template>
<script>
import pdf from 'vue-pdf'
export default {
components: {
pdf
}
}
The url of the pdf file. src
may also be a string|TypedArray|DocumentInitParameters|PDFDataRangeTransport
for more details, see PDFJS.getDocument()
.
The page number to display.
The page rotation in degrees, only multiple of 90 are valid.
updatePassword
: The function to call with the pdf password.reason
: the reason why this function is called 'NEED_PASSWORD'
or 'INCORRECT_PASSWORD'
Document loading progress. Range [0, 1].
Triggered when the document is loaded.
Triggered when a page is loaded.
The total number of pages of the pdf.
Triggered when an error occurred.
Prints the current page.
<template>
<button @click="print">print</button>
<pdf ref="myPdfComponent" src="https://cdn.mozilla.net/pdfjs/tracemonkey.pdf"></pdf>
</template>
<script>
...
methods: {
print() {
this.$refs.myPdfComponent.print();
}
}
...
</script>
@progress
event:rotate
prop<resize-sensor>
optional (implies adding a :scale
prop)FAQs
vue.js pdf viewer
The npm package vue-pdf receives a total of 14,958 weekly downloads. As such, vue-pdf popularity was classified as popular.
We found that vue-pdf 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.