Skip to content

Commit 4f9a71a

Browse files
committed
Update App.vue
1 parent 8362b1b commit 4f9a71a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

demo/vue/src/App.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
import { ref } from "vue";
33
import "pdfjs-viewer-element";
44
5-
const src: string | null = ref("/sample-pdf-with-images.pdf");
6-
const viewerPath: string | null = ref("/pdfjs-prebuilt");
7-
const page: string | null = ref("2");
8-
const locale: string | null = ref("de");
9-
const zoom: string | null = ref("auto");
10-
const pagemode: string | null = ref("none");
11-
const search: string | null = ref(null);
12-
const phrase: boolean = ref(true);
13-
const textLayer: string | null = ref("hover");
5+
const src = ref("/sample-pdf-with-images.pdf");
6+
const viewerPath = ref("/pdfjs-prebuilt");
7+
const page = ref("2");
8+
const locale = ref("uk");
9+
const zoom = ref("auto");
10+
const pagemode = ref("none");
11+
const search = ref(null);
12+
const phrase = ref(true);
13+
const textLayer = ref("hover");
1414
</script>
1515

1616
<template>

0 commit comments

Comments
 (0)