index.vue 547 B

12345678910111213141516171819202122232425
  1. <template>
  2. <HcNewCard>
  3. <template #header>
  4. <el-button size="large" type="primary" @click="testPdf">测试pdf</el-button>
  5. </template>
  6. <template #extra>
  7. extra
  8. </template>
  9. <hc-pdfs src="http://183.247.216.148:28183/pdf/1796799665836916742.pdf" />
  10. <template #action>
  11. action
  12. </template>
  13. </HcNewCard>
  14. </template>
  15. <script setup>
  16. const testPdf = () => {
  17. //window.open('/#/pdf?url=' + url1, '_blank')
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>