AG-Grid Vue编辑器集成:20.1.0和20.2.0的区别

AG-Grid Vue editor integration: difference between 20.1.0 and 20.2.0

我在使用 Vue 2.6.0 和 Vuetify 1.5.9 时遇到了 AG-Grid 20.2.0 企业版和自定义编辑器的一些问题。

非常简单的编辑器组件是这个:

<template>
    <v-combobox v-model="value" :items="items" hide-details single-line flat solo></v-combobox>
</template>

<script>
import Vue from 'vue'

export default Vue.extend({
    name: 'kus-test',
    data() {
        return {
            items: [],
            value: ''
        }
    },
    methods: {
        getValue() {
            return this.value
        }
    }
})
</script>

使用 AG-Grid 20.1.0,当我输入 "something" 并按回车键时,字符串被保存,编辑器关闭,我在单元格中看到 "something"。

使用 AG-Grid 20.2.0,当我按下回车键时,编辑器关闭并且没有任何保存,我看到一个空单元格并且控制台中没有出现错误。

使用稍微复杂的编辑器组件,我看到所有 $refs 都设置为 undefined

我不知道这是否是一个错误,但这绝对是 AG-Grid 的问题,因为我的其他依赖项保持不变并且可以很好地与 20.1.0 配合使用。

你有什么想法吗? 谢谢

自版本 22.1.0 和 vuetify 2 以来,这不再是问题。