基于 VUE 组件实现 canvas 表格
[演示地址:http://halvee.com/demo/canvastable/index.html]
效果图
示例代码
<vc-table
:styles="style"
:width="1000"
:height="600"
style="margin-bottom:20px;margin-left:50px;cursor:pointer;margin-top:100px;"
@cell-enter="cellEnter"
@cell-out="cellOut"
>
<vc-row :key="ri" v-for="(row,ri) in rows">
<vc-col :key="ci" :data="col.data" :styles="col.style" v-for="(col,ci) in row.cols">
{{cell.data}}
<!-- <vc-text>{{'单元格'+col.data}}</vc-text> -->
</vc-col>
</vc-row>
</vc-table>
yarn install
yarn run serve
yarn run build
yarn run test
yarn run lint

