批量编辑优化
了解了story bug 组件的结构
<el-dropdown-item
:title="!bugCopyable(tableBatchSelectedRows[0]) ? $t('You are NOT authorized to copy bugs.') : ''"
@click.native="openBatchCopy(tableBatchSelectedRows)"
:disabled="!bugCopyable(tableBatchSelectedRows[0])"
>
{{ $t('Batch Copy') }}
</el-dropdown-item> @selectRowsObject="onSelectRowsObject"
:field-ype="fieldType"
//传递props// 或者用eventBus传递
this.$EventBus.$emit('tableEditable', selectedRows[0]);
this.$EventBus.$on('tableEditable', selectedRows[0]);
熟悉jsx
最后更新于