You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
334 B
10 lines
334 B
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="url" style="width: 100%; height: calc(100vh - 180px)" />
|
|
<!-- <iframe :src="url" frameborder="0" style="width: 100%;height: 75vh;"></iframe> -->
|
|
</ContentWrap>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const url = ref('http://localhost:12080/jmreport/view/881686740529258496')
|
|
</script>
|
|
|