一揣炕、 html-docx-js-typescript
1. 安裝
# npm install html-docx-js-typescript --save-dev
2. vue中的使用方法
import { asBlob } from 'html-docx-js-typescript'
// 如果你想保存為docx格式园匹,你還需要import 'file-saver'
import { saveAs } from 'file-saver'
const content = '......' // 要導(dǎo)出的富文本內(nèi)容
const html= `
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
${content} // 富文本的內(nèi)容
</body>
</html>
`
export default {
methods: {
saveDocx() {
asBlob(html).then(data => {
saveAs(data, '文件名.docx') // 保存為 docx 文件
}) // asBlob() return Promise<Blob|Buffer>
}
}
}
參考資料
本站相關(guān)內(nèi)容
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者