previewPdf.vue 319 B

12345678910111213141516171819202122
  1. <template>
  2. <web-view :src="`/pdf/web/viewer.html?file=${url}`" />
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. url: ''
  9. };
  10. },
  11. onLoad(options) {
  12. const { fileUrl } = options;
  13. console.log(fileUrl);
  14. if (fileUrl) {
  15. this.url = fileUrl;
  16. }
  17. }
  18. };
  19. </script>
  20. <style></style>