12345678910111213141516171819202122232425 |
- <template>
- <HcNewCard>
- <template #header>
- <el-button size="large" type="primary" @click="testPdf">测试pdf</el-button>
- </template>
- <template #extra>
- extra
- </template>
- <hc-pdfs src="http://183.247.216.148:28183/pdf/1796799665836916742.pdf" />
- <template #action>
- action
- </template>
- </HcNewCard>
- </template>
- <script setup>
- const testPdf = () => {
- //window.open('/#/pdf?url=' + url1, '_blank')
- }
- </script>
- <style lang="scss" scoped>
- </style>
|