![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
pdf-viewer-vue3
Advanced tools
一款Vue3框架开发的pdf阅读器组件,如果您使用的是Vue2,可以查看[Vue2PDF阅读器组件地址](https://www.npmjs.com/package/pdf-viewer-vue2)
一款Vue3框架开发的pdf阅读器组件,如果您使用的是Vue2,可以查看Vue2PDF阅读器组件地址
<script setup>
import { ref } from 'vue';
import PDF from 'pdf-viewer-vue3';
import 'pdf-viewer-vue3/package/pdf-viewer.css';
const fileInput = ref();
const pdfComp = ref();
const pdfMobileComp = ref();
const theme = ref("light");
async function handleFileChange(event) {
const files = event.target.files;
const file = files[0];
if (file) {
const buffer = await file.arrayBuffer();
pdfMobileComp.value?.loadFile(buffer);
const reReadBuffer = await file.arrayBuffer();
pdfComp.value?.loadFile(reReadBuffer);
console.log(pdfComp.value);
}
}
function openFile() {
fileInput.value?.click();
}
function customTheme() {
theme.value = {
'--pdf-toolbar-bg': '#ccc',
'--pdf-toolbar-input-bg': '#141414',
'--pdf-toolbar-text-color': '#EBEBEB',
'--pdf-toolbar-text-highlight': 'rgb(99 102 241)',
'--pdf-toolbar-bg-highlight': '#39383D',
'--pdf-show-bg': '#39383D',
'--pdf-thumbnail-bg': '#222',
'--pdf-thumbnail-border-color': '#39383D',
'--pdf-thumbnail-text-color': '#EBEBEB',
'--pdf-thumbnail-text-color-highlight': 'rgb(99 102 241)',
'--pdf-catalogue-text-color': '#EBEBEB',
'--pdf-catalogue-text-highlight': 'rgb(99 102 241)',
'--pdf-menu-setting-color': '#EBEBEB',
'--highlight-bg-color': 'rgba(230, 0, 120, 1)',
'--highlight-selected-bg-color': 'rgba(100, 0, 0, 1)',
'--pdf-mask-bg-color': 'rgba(34, 34, 34, .9)',
'--pdf-mask-process-bg-color': '#D7D7E0',
'--pdf-mask-process-highlight': 'rgb(167 139 250)',
'--pdf-mask-tip-color': 'rgb(107 114 128)',
'--pdf-mask-btn-color': 'rgb(167 139 250)',
'--pdf-mask-btn-highlight': 'rgb(192 132 252)'
}
}
</script>
<template>
<div>
<button @click="openFile">选择文件</button>
<button @click="theme = 'dark'">黑色主题</button>
<button @click="theme = 'light'">浅色主题</button>
<button @click="customTheme">自定义主题</button>
<input v-show="false" ref="fileInput" type="file" @change="handleFileChange">
<p>左侧为大尺寸工具栏,右侧为小尺寸工具栏</p>
<div
style="display: flex;"
>
<PDF
ref="pdfComp"
:theme="theme"
@pagesLoaded="(v) => console.log('pagesLoaded', v)"
@pageRendered="(v) => console.log('pageRendered', v)"
@pageChanging="(v) => console.log('pageChanging', v)"
@findChange="(v) => console.log('findChange', v)"
@scaleChanging="(v) => console.log('scaleChanging 缩放比例改变', v)"
style="width: 800px; height: 500px; margin: auto;"
></PDF>
<PDF
ref="pdfMobileComp"
:theme="theme"
@pagesLoaded="(v) => console.log('pagesLoaded', v)"
@pageRendered="(v) => console.log('pageRendered', v)"
@pageChanging="(v) => console.log('pageChanging', v)"
@findChange="(v) => console.log('findChange', v)"
@scaleChanging="(v) => console.log('scaleChanging 缩放比例改变', v)"
style="width: 300px; height: 500px; margin-left: 20px;"
></PDF>
</div>
</div>
</template>
<style scoped>
</style>
FAQs
一款Vue3框架开发的pdf阅读器组件,如果您使用的是Vue2,可以查看[Vue2PDF阅读器组件地址](https://www.npmjs.com/package/pdf-viewer-vue2)
The npm package pdf-viewer-vue3 receives a total of 71 weekly downloads. As such, pdf-viewer-vue3 popularity was classified as not popular.
We found that pdf-viewer-vue3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.