14 lines
284 B
Vue
14 lines
284 B
Vue
|
<template>
|
||
|
<div class="pdf-container">
|
||
|
<client-only>
|
||
|
<VuePdfEmbed :source="pdfUrl" />
|
||
|
|
||
|
</client-only>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import VuePdfEmbed from 'vue-pdf-embed'
|
||
|
// 直接引用public目录下的文件
|
||
|
const pdfUrl = ref('/pdfs/pmyjqrs.pdf')
|
||
|
</script>
|