previewPdf.vue 304 B

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