vue 在线编辑excel表格(原生和使用组件的两种方式)
top表头和left表头格式的表格
<template>
<div>
<!-- 用组件写的编辑表格 -->
<el-table
border
:data="tableData"
style="width: 100%">
<el-table-column
v-for="(item,index) in keys"
:key="index"
:prop="item.prop"
:label="item.lable"
width="180">
<template slot-scope="scope">
<p v-if="scope.column.property