Halo~
<hot-table :settings="hotSettings">
<hot-column :width="120">
<stars-rating hot-renderer></stars-rating>
</hot-column>
<hot-column v-for="n in customTableColumns" :width="120" v-bind:key="'col' + n">
<color-picker hot-editor hot-renderer></color-picker>
</hot-column>
</hot-table>
when i found if i used hotInstance.updateSettings({columns: this.customTableColumns})
, custom component will be deleted <hot-column :width="120"> <stars-rating hot-renderer></stars-rating> </hot-column>
, and show the new customTableColumns
So i try to use settings: {columns: [{renderer: customRenderer } ]}
instead, but how to use in Vue?
Thanks