index.js 230 Bytes
Newer Older
YazhouChen's avatar
YazhouChen committed
1 2 3 4 5 6 7 8 9 10 11 12
import Table from '../table'
import mixin from './src/mixin'
import VXETable from '../v-x-e-table'

export const Keyboard = {
  install () {
    VXETable.reg('keyboard')
    Table.mixins.push(mixin)
  }
}

export default Keyboard