preview.vue 410 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <web-view style="width: 100%;height: 100vh;" :src="src"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. fileSrc: ""
  9. }
  10. },
  11. onLoad(options) {
  12. this.fileSrc = options.fileSrc
  13. },
  14. computed: {
  15. src() {
  16. if (this.fileSrc) {
  17. return `http://vw.usdoc.cn/?src=${this.fileSrc}`
  18. }
  19. return ""
  20. }
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style>
  27. </style>