props.js 391 B

12345678910111213141516171819
  1. export default {
  2. props: {
  3. // PDF文件地址
  4. src: {
  5. type: String,
  6. default: ''
  7. },
  8. // 组件高度
  9. height: {
  10. type: String,
  11. default: '500px'
  12. },
  13. // pdfjs资源域名
  14. baseUrl: {
  15. type: String,
  16. default: 'https://uview-plus.jiangruyi.com/h5'
  17. }
  18. }
  19. }