19 lines
243 B
Vue
Raw Normal View History

2025-06-30 09:38:03 +08:00
<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>