We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20bf62a commit d41f2c1Copy full SHA for d41f2c1
1 file changed
docs/docs/api/material.md
@@ -116,6 +116,21 @@ material.setAssets(assets1);
116
material.loadIncrementalAssets(assets2);
117
```
118
119
+更新特定物料的描述文件
120
+
121
+```typescript
122
+import { material } from '@alilc/lowcode-engine';
123
+material.loadIncrementalAssets({
124
+ version: '',
125
+ components: [
126
+ {
127
+ "componentName": 'Button',
128
+ "props": [{ name: 'new', title: 'new', propType: 'string' }]
129
+ }
130
+ ],
131
+})
132
+```
133
134
### 设计器辅助层
135
#### addBuiltinComponentAction
136
在设计器辅助层增加一个扩展 action
0 commit comments