| 1234567891011121314151617181920212223 |
- <template>
- <iframe
- :src="url"
- width="100%"
- style="height: calc(100vh - 100px)"
- frameborder="0"
- allowfullscreen="true"
- ></iframe>
- </template>
- <script>
- export default {
- props: {
- url: ''
- },
- data() {
- return {};
- },
- methods: {}
- };
- </script>
- <style scoped lang="scss"></style>
|