我正在尝试从handsontable中设置一个vuejs变量。
vuejs变量:
this.dataChanged
在下面的代码块中,无法从handsontable设置中获得,知道如何才能访问它吗?
<template>
<div id="hot-container">
<HotTable :root="root" :settings="hotSettings"></HotTable>
</div>
</template>
<script>
export default {
data() {
return {
#vuejs variable i want to set from hot
dataChanged: false,
root: 'test-hot',
hotSettings: {
data: [{something: 0}],
afterChange: function(changes, src) {
if (src !== 'loadData') {
this.dataChanged = true
}
},
methods: {
saveChanges: function () {
if (this.dataChanged){
//save data
}
}
}
3条答案
按热度按时间hpcdzsge1#
我也遇到了同样的问题...我在GitHub上找到了一个解决办法。
通过这种方式,您可以像往常一样访问所有Vue的数据、方法等。
下面是原始线程的链接:https://github.com/handsontable/vue-handsontable-official/issues/7#issuecomment-356190395
cbeh67ev2#
我最终保存到了在vue外部声明的变量中-即data()声明上方
zi8p0yeb3#
就像@Rosdi_Kasim说的那样,但使用胖箭头功能要简单得多