Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@tallcomponents/unopdf-vue
Advanced tools
Vue components to render PDFs to HTML, enter and access data in PDF forms, create and manipulate PDFs
Welcome to UnoPdf, a comprehensive PDF handling library for modern web development from TallComponents. Designed for both frontend and backend applications, UnoPdf offers an extensive suite of web components and a RESTful API to seamlessly integrate PDF functionalities into your projects. Whether you're using Vue, React, or vanilla JavaScript on the frontend, or managing PDFs in backend environments, UnoPdf provides robust tools for creating, editing, reading, and saving PDF documents. Its powerful API also allows access to the PDF object model, enabling developers to build intricate integrations. Embrace the simplicity and versatility of UnoPdf to enhance your web applications with dynamic PDF interactions.
This packages provides Vue components for UnoPdf. The UnoPdf Core package provides the implementation of the UnoPdf core and is used as a dependency of this Vue package.
npm install @tallcomponents/unopdf-vue
or
yarn add @tallcomponents/unopdf-vue
import { PdfViewerLibrary } from "@tallcomponents/unopdf-vue";
createApp(App)
.use(PdfViewerLibrary)
.mount("#app");
<template>
<pdf-application />
<pdf-document />
<pdf-pages />
</template>
in vite.config.js
:
- plugins: [vue()],
+ plugins: [
+ vue({
+ template: {
+ compilerOptions: {
+ // treat all tags with a dash as custom elements
+ isCustomElement: (tag) => tag.includes('-'),
+ },
+ },
+ }),
+ ],
A quick start guide and reference documentation is available on the UnoPdf website.
UnoPdf is currently available in a private preview and is updated regularly. See the UnoPdf Release Notes for more information.
Comprehensive code samples are available on the UnoPdf website: UnoPdf Vue Code Samples
FAQs
Vue components to render PDFs to HTML, enter and access data in PDF forms, create and manipulate PDFs
We found that @tallcomponents/unopdf-vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.