安全在线教育平台
祖安之光
5 days ago ff46cc24356b2cd2f23ab3cd7892e61b682d2b8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<template>
  <div class="notice">
    <iframe name="bottom" :src="state.url" style="width: 100%; height: 850px;margin-top: 6px;border: lightgrey 1px solid"></iframe>
  </div>
</template>
<script setup>
import {onMounted, reactive, ref, toRefs} from 'vue'
const route = useRoute();
const state = reactive({
  url:''
})
 
onMounted(()=>{
  state.url = route.query.url;
})
</script>
 
<style scoped lang="scss">
 
</style>