
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@aoexl/sign-vue
Advanced tools
Vue 3 integration for the Aoexl Sign PDF eSignature SDK.
npm install @aoexl/sign-vue @aoexl/sign
# peer dep
npm install vue
<script setup>
import { AoexlSign } from '@aoexl/sign-vue'
const signers = [{ name: 'Jane Doe', email: 'jane@example.com', role: 'signer' }]
function onComplete({ signedPdfBytes, fields }) {
console.log('Signing complete', fields)
// upload signedPdfBytes to your server
}
function onError(err) {
console.error('Signing error', err)
}
</script>
<template>
<AoexlSign
license-key="pk_live_xxxxxxxxxxxx"
pdf-url="https://your-server.com/contract.pdf"
mode="sign"
:signers="signers"
@complete="onComplete"
@error="onError"
style="height: 700px; display: block;"
/>
</template>
// main.ts
import { createApp } from 'vue'
import AoexlSignPlugin from '@aoexl/sign-vue'
import App from './App.vue'
createApp(App).use(AoexlSignPlugin).mount('#app')
Now <AoexlSign> is available in every component without importing.
| Prop | Type | Default | Description |
|---|---|---|---|
licenseKey | string | — | Required. Your Aoexl license key. |
pdfUrl | string | — | Required. URL or data-URL of the PDF. |
mode | 'prepare' | 'sign' | 'view' | 'sign' | Viewer mode. |
signers | Signer[] | [] | Signer definitions. |
fields | Field[] | [] | Pre-placed fields (required in sign/view mode). |
theme | { primary?: string; accent?: string } | {} | Color overrides. |
workerSrc | string | — | Custom PDF.js worker URL. |
| Event | Payload | Description |
|---|---|---|
complete | CompleteResult | Fired when the user finishes signing / preparing. |
error | Error | Fired on any error (license, PDF load, etc.). |
| Mode | Description |
|---|---|
prepare | Drag and drop fields onto the PDF; emits complete with the field layout and signer list. |
sign | Present pre-placed fields for the signer to fill and sign. |
view | Read-only rendering of a signed PDF. |
import type { AoexlSignProps, Field, Signer, CompleteResult } from '@aoexl/sign-vue'
npm run build # outputs dist/aoexl-sign-vue.js (ESM) + dist/aoexl-sign-vue.cjs (CJS)
UNLICENSED — contact Aoexl for a commercial license.
FAQs
Vue 3 integration for Aoexl Sign PDF eSignature SDK
We found that @aoexl/sign-vue demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.