Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I add a custom function and register it when view created.
Then I use this function in a cell. A random number will display in the cell. But after I save as Excel. The cell is empty. Nothing in the cell.
Is this a bug?
selfRandom() {
return Math.random();
},
// 注册自定义函数
regsterFn() {
var spreadsheet = this.$refs.spreadsheet;
spreadsheet.addCustomFunction(this.selfRandom, "selfrandom");
},

