<template>
<div>
<iframe
:src="docx"
frameborder="0"
style="height: 60vh; width: 32vw"
></iframe>
<iframe
:src="excel"
frameborder="0"
style="height: 60vh; width: 32vw"
></iframe>
<iframe
:src="pdf"
frameborder="0"
style="height: 60vh; width: 32vw"
></iframe>
</div>
</template>
<script>
export default {
data() {
return {
docx:
`https://view.officeapps.live.com/op/view.aspx?src=` +
encodeURIComponent('http://static.shanhuxueyuan.com/test6.docx'),
excel:
`https://view.officeapps.live.com/op/view.aspx?src=` +
encodeURIComponent('http://static.shanhuxueyuan.com/demo/excel.xlsx'),
pdf: 'http://static.shanhuxueyuan.com/test.pdf'
}
},
mounted() {},
methods: {}
}
</script>