<gc-spread-sheets-designer :styleInfo="styleInfo" :config="config" @designerInitialized="designerInitialized">
</gc-spread-sheets-designer>
designerInitialized(value) {
this.designer = value;
this.spread = value.getWorkbook();
this.spread.options.newTabVisible = false;
this.spread.options.allowCopyPasteExcelStyle = false;
console.log(this.spread)
}
是在designerInitialized方法下修改allowCopyPasteExcelStyle为false ,打印结果还是为true
|