vue导出word文档方法?

简介: vue导出word文档方法?

1、安装依赖

npm install html-docx-js -S

npm install file-saver -S

2、绑定一个id

3、引入

4、点击导出事件

//模板word导出
  const exportWordTpl= () =>{
        let contentHtml = document.getElementById("cvb").innerHTML
        let cssHTML = `
        table {
        width: 100%;
        table-layout: fixed;
        margin-top:10px;
        border: 1px solid #ddd;
        border-collapse: collapse;
        }
        .export-tb .thead td {
        font-weight: bold;
        }
        td {
        border: 1px solid #ddd;
        color: #333;
        text-align: left;
        padding: 6px 10px;
        }`
       let content = `
        <!DOCTYPE html><html>
              <head>
                  <meta http-equiv="Content-Type" content="textml; charset=UTF-8">
                  <style>
                      ${cssHTML}
                  <yle>
              </head>
              <body>
                  <table>
                      ${contentHtml}
                  </table>
              </body>
            <ml>`;
      let converted = htmlDocx.asBlob(content);
      FileSaver.saveAs(converted, '文件名.docx');
    }

5、找到\node_modules\html-docx-js\dist\html-docx.js文件 更改一下内容

13101行更改

13133行

 

13147行:

相关文章
|
3月前
|
JavaScript 前端开发 UED
vue中vue-router路由懒加载(按需加载)的作用以及常见的实现方法
vue中vue-router路由懒加载(按需加载)的作用以及常见的实现方法
231 1
|
3月前
|
JavaScript 前端开发
Vue开发必备:$nextTick方法的理解与实战场景
Vue开发必备:$nextTick方法的理解与实战场景
241 1
|
3月前
|
存储 消息中间件 JavaScript
Vue3 多种组件通讯方法
【10月更文挑战第6天】
|
3月前
|
缓存 JavaScript
|
3月前
|
设计模式 JavaScript 开发工具
Vue开发中使用好钩子方法(hook method)可以使你的代码更加模块化和可维护
Vue开发中使用好钩子方法(hook method)可以使你的代码更加模块化和可维护
31 0
|
3月前
|
JavaScript API
Vue中使用require.context()自动引入组件和自动生成路由的方法介绍
Vue中使用require.context()自动引入组件和自动生成路由的方法介绍
89 0
|
3月前
|
缓存 JavaScript Serverless
vue中computed计算属性、watch侦听器、methods方法的区别以及用法
vue中computed计算属性、watch侦听器、methods方法的区别以及用法
179 0
|
3月前
|
存储 JavaScript 前端开发
Vue.js项目中全面解析定义全局变量的常用方法与技巧
Vue.js项目中全面解析定义全局变量的常用方法与技巧
64 0
|
3月前
|
JavaScript
Vue路由传参实战指南:三种常用方法示例演示
Vue路由传参实战指南:三种常用方法示例演示
146 0
|
4月前
|
JavaScript 前端开发 UED
让 HTML 向 Vue.js 华丽转身:如何把 `wangEditor` 仿腾讯文档项目整合进 Vue.js
让 HTML 向 Vue.js 华丽转身:如何把 `wangEditor` 仿腾讯文档项目整合进 Vue.js

热门文章

最新文章