https://github.com/plortinus/how-to-preview-pdf-within-vue-project
如何在Vue项目中使用pdf.js进行pdf文件预览
https://github.com/plortinus/how-to-preview-pdf-within-vue-project
Last synced: about 2 months ago
JSON representation
如何在Vue项目中使用pdf.js进行pdf文件预览
- Host: GitHub
- URL: https://github.com/plortinus/how-to-preview-pdf-within-vue-project
- Owner: Plortinus
- License: mit
- Created: 2018-03-23T09:39:44.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-28T05:50:14.000Z (almost 3 years ago)
- Last Synced: 2025-03-25T17:46:35.634Z (2 months ago)
- Language: JavaScript
- Size: 2.86 MB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# how-to-preview-pdf-within-vue-project
如何在Vue项目中使用pdf.js进行pdf预览代码
```html
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'app',
components: {
HelloWorld
},
data () {
return {
baseUrl: process.env.BASE_URL
}
}
}```