options属性: 描述:配置文档编辑器的选项,如工具栏的显示与隐藏、编辑器的尺寸等。 用法: <VueOfficeDocx :options="editorOptions"></VueOfficeDocx> 1. data() { return { editorOptions: { toolbar: true, width: '800px', height: '600px' } }; } 1. 2. 3. 4. 5. 6. 7. 8. 9. editor...