Vue实现复制excel表格内容粘贴至网页

需求

要求复制excel表格内容粘贴至网页表格,并且自动生成格式,不要问为什么不使用导入excel,我也不知道客户为什么不用

秉承用户是上帝的原则

使用Handsontable表格组建 引入与使用

cnpm install handsontable @handsontable/vue
//main.js中
import 'handsontable/dist/handsontable.full.css';
// vue页面
import {
    HotTable
} from '@handsontable/vue';
import Handsontable from 'handsontable';

主体实现代码





效果

Vue实现复制excel表格内容粘贴至网页_第1张图片
截屏2020-07-23 下午2.51.19.png

你可能感兴趣的:(Vue实现复制excel表格内容粘贴至网页)