mirror of
https://github.com/501351981/vue-office.git
synced 2025-06-25 07:08:58 +08:00
27 lines
438 B
Vue
27 lines
438 B
Vue
<template>
|
|
<div class="pdf-demo">
|
|
<vue-office-pdf :src="src" @rendered="rendered"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/* eslint-disable */
|
|
export default {
|
|
name: "PdfDemo",
|
|
data(){
|
|
return {
|
|
// src:'http://static.shanhuxueyuan.com/test.pdf'
|
|
src:'http://static.shanhuxueyuan.com/test/fapiao.pdf'
|
|
}
|
|
},
|
|
methods:{
|
|
rendered(){
|
|
console.log("加载完成")
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |