Table add new event @on-cell-click
This commit is contained in:
parent
ad23db9a3f
commit
76c5a5ea6f
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div :class="classes" ref="cell">
|
||||
<div :class="classes" ref="cell" @click="handleCellClick">
|
||||
<template v-if="renderType === 'index'"><span>{{ column.indexMethod ? column.indexMethod(row) : (naturalIndex + 1) }}</span></template>
|
||||
<template v-if="renderType === 'selection'">
|
||||
<Checkbox :value="checked" @click.native.stop="handleClick" @on-change="toggleSelect" :disabled="disabled"></Checkbox>
|
||||
|
@ -165,6 +165,9 @@
|
|||
},
|
||||
handleToggleTree () {
|
||||
this.$parent.$parent.$parent.toggleTree(this.row._rowKey);
|
||||
},
|
||||
handleCellClick (event) {
|
||||
this.$parent.$parent.$parent.$emit('on-cell-click', this.row, this.column, this.row[this.column.key], event);
|
||||
}
|
||||
},
|
||||
created () {
|
||||
|
|
Loading…
Add table
Reference in a new issue