Files
wangmingwei 35101db700 初始代码
2026-04-21 16:55:00 +08:00

20 lines
244 B
Vue

<template>
<web-view :src="fileUrl"></web-view>
</template>
<script>
import {
getDownloadUrl
} from '@/api/common'
export default {
data() {
return {
fileUrl: ''
}
},
onLoad(e) {
this.fileUrl = e.data
}
}
</script>