Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit 3975d63

Browse filesBrowse files
authored
Merge pull request #54 from PDFTron/guides-update
Added trial key info + demos
2 parents d914397 + c310e65 commit 3975d63
Copy full SHA for 3975d63

File tree

Expand file treeCollapse file tree

2 files changed

+22
-3
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+22
-3
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+17-2Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,24 @@
66

77
This repo is specifically designed for any users interested in integrating WebViewer into Vue project. You can watch [an in-depth video](https://youtu.be/fCHkJ5_PLS0) going over this repo or [read a guide](https://www.pdftron.com/documentation/web/get-started/vue/).
88

9-
## Demo
9+
## Demos
1010

11-
You can explore all of the functionality in our [showcase](https://www.pdftron.com/webviewer/demo/).
11+
- [Customizable out-of-the-box UI](https://showcase.apryse.com/toolbar-customization)
12+
- [PDF Viewer](https://showcase.apryse.com/)
13+
- [DOCX Editor](https://showcase.apryse.com/office-editor)
14+
- [Annotation & Markup](https://showcase.apryse.com/annotation-permissions)
15+
- [Generate PDFs from DOCX template](https://showcase.apryse.com/office-template-fill)
16+
- [Digital Signatures](https://showcase.apryse.com/digital-signatures)
17+
- [PDF Text Editing](https://showcase.apryse.com/pdf-editing)
18+
- [Page Manipulation](https://showcase.apryse.com/pdf-page-manipulation-api)
19+
- [Redaction](https://showcase.apryse.com/redaction)
20+
- [Form Building](https://showcase.apryse.com/pdf-form-build)
21+
- [Annotate Videos](https://showcase.apryse.com/annotate-video-frames)
22+
- [More](https://showcase.apryse.com/)
23+
24+
## Trial
25+
26+
WebViewer comes with a 7-day trial without any feature limitations or trial key needed. To extend the trial, you can obtain the trial key by [signing-up](https://dev.apryse.com/) on our [developer portal](https://dev.apryse.com/).
1227

1328
## Initial setup
1429

‎src/components/WebViewer.vue

Copy file name to clipboardExpand all lines: src/components/WebViewer.vue
+5-1Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ export default {
1313
const viewer = ref(null);
1414
onMounted(() => {
1515
const path = `${process.env.BASE_URL}webviewer`;
16-
WebViewer({ path, initialDoc: props.initialDoc }, viewer.value).then(
16+
WebViewer({
17+
path,
18+
initialDoc: props.initialDoc,
19+
licenseKey: 'your_license_key' // sign up to get a free trial key at https://dev.apryse.com
20+
}, viewer.value).then(
1721
(instance) => {
1822
const { documentViewer, annotationManager, Annotations } =
1923
instance.Core;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.