mirror of
https://github.com/501351981/vue-office.git
synced 2025-06-15 07:00:00 +08:00
21 lines
597 B
JavaScript
21 lines
597 B
JavaScript
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>excel预览</title>
|
|
<link rel="stylesheet" href="js-preview-lib/excel.css" />
|
|
<script src="js-preview-lib/excel.umd.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="excel" style="width: 100vw; height: 100vh"></div>
|
|
|
|
<script>
|
|
const myExcelPreviewer = jsPreviewExcel.init(document.getElementById('excel'));
|
|
myExcelPreviewer .preview('http://static.shanhuxueyuan.com/test.xlsx').then(()=>{
|
|
console.log('预览完成');
|
|
}).catch(e=>{
|
|
console.log('预览失败', e);
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |