index.vue 519 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <Page title="PDF预览" styleReset="backNone">
  3. <template v-slot:body>
  4. <pdf></pdf>
  5. </template>
  6. </Page>
  7. </template>
  8. <script setup>
  9. import { ref } from 'vue'
  10. import pdf from './pdf.vue';
  11. </script>
  12. <style scoped>
  13. .pdf-container {
  14. width: 100%;
  15. height: 100%; /* 高度占满视口 */
  16. overflow: hidden;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. .vue-pdf {
  22. max-width: 100%; /* 最大宽度为100% */
  23. max-height: 100%; /* 最大高度为100% */
  24. }
  25. </style>