Files
2023-09-20 21:49:33 +08:00

18 lines
226 B
Vue

<template>
<web-view :src="pdfPath"></web-view>
</template>
<script>
export default {
name: "pdf",
data() {
return {
pdfPath: ""
}
},
onLoad(options) {
this.pdfPath = options.path;
}
}
</script>