1.0.6-alpha.3 • Published 4 months ago

lr-file-preview v1.0.6-alpha.3

Weekly downloads
-
License
MIT
Repository
-
Last release
4 months ago

lr-file-preview

基于Web的文件预览解决方案,支持 docx, pdf, xlsx, jpg, jpeg, png, .txt 等格式的在线预览。

安装

  npm install lr-file-preview --save

引入

  import { filePreview } from 'lr-file-preview'

  const uploadPreview = new filePreview(file);

  // 带弹窗标题
  const uploadPreview = new filePreview(file, { title: "xx预览" });

属性

参数说明类型可选值默认值
file文件对象Object--
options样式Object--

options属性

参数说明类型可选值默认值
title标题String-'文件预览'
container容器idString-'lr-file-preview'
errorMsg错误提示String-'预览文件错误,请重新选择。'
loadingMsg加载中提示String-'加载中,请稍后...'