UNPKG

vxe-table

Version:

A PC-end table component based on Vxe UI, supporting copy-paste, data pivot table, and high-performance virtual list table solution.

15 lines (11 loc) 274 B
import { reactive } from 'vue' interface CrossTableDragRowObj { row: any } // 跨表拖拽 export const crossTableDragRowInfo: CrossTableDragRowObj = reactive({ row: null }) export function getCrossTableDragRowInfo () { return crossTableDragRowInfo }