FileView.vue 584 B

12345678910111213141516171819202122232425
  1. <script setup lang="ts">
  2. const props = defineProps({
  3. url: {
  4. type: String,
  5. },
  6. });
  7. // 在生产环境下使用微软的office在线预览方式,导入支持office和word导入,在线预览不支持开发环境
  8. const path =
  9. process.env.NODE_ENV === 'development'
  10. ? props.url
  11. : `http://view.officeapps.live.com/op/view.aspx?src=${props.url}`;
  12. </script>
  13. <template>
  14. <iframe
  15. :src="path"
  16. width="100%"
  17. height="100%"
  18. frameborder="0"
  19. class="!z-0 !pointer-events-none"
  20. ></iframe>
  21. </template>
  22. <style scoped lang="less"></style>