首先,在Vue.js项目中安装
html-docx-js
库:npm install html-docx-js
在需要进行网页转Word的组件中,引入并使用
html-docx-js
库import docx from 'html-docx-js'; export default { methods: { convertToDocx() { const htmlContent = '<p>This is the content of the webpage.</p>'; // 替换成你需要转换的网页内容 const converted = docx.asBlob(htmlContent); const link = document.createElement('a'); link.href = URL.createObjectURL(converted); link.download = 'converted.docx'; link.click(); } } }
<button @click="convertToDocx">Convert to Word</button>