browse.vue 332 B

1234567891011121314151617181920212223
  1. <template>
  2. <iframe
  3. :src="url"
  4. width="100%"
  5. style="height: calc(100vh - 100px)"
  6. frameborder="0"
  7. allowfullscreen="true"
  8. ></iframe>
  9. </template>
  10. <script>
  11. export default {
  12. props: {
  13. url: ''
  14. },
  15. data() {
  16. return {};
  17. },
  18. methods: {}
  19. };
  20. </script>
  21. <style scoped lang="scss"></style>