We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6995d0f commit 4d07f6cCopy full SHA for 4d07f6c
2 files changed
.github/workflows/test.yml
@@ -9,7 +9,7 @@ jobs:
9
10
strategy:
11
matrix:
12
- node-version: [14.x, 16.x]
+ node-version: [14.x]
13
14
steps:
15
- uses: actions/checkout@v2
packages/pdfeasy-docs/.vitepress/theme/components/Demo.vue
@@ -21,17 +21,22 @@
21
22
__RENDERING__.value = true
23
24
- pdfeasy.new()
+ pdfeasy.new({
25
+ plugins: [],
26
+ })
27
28
await pdfeasy.add(parse)
29
30
+ console.log('here?')
31
+
32
pdfeasy
33
.run({
34
client: {
35
emit: 'blob',
36
},
37
})
38
.then((blob) => {
39
40
iframe.value.src = blob
41
42
.catch((res) => {
0 commit comments