Skip to content

Commit 1802fc0

Browse files
committed
docs: update
1 parent 8a3ab3c commit 1802fc0

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

Diff for: apps/playground/src/helpers/prototypes.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export const nativeDomPrototypes = () => {
138138
{
139139
name: 'className',
140140
title: '类名',
141-
setter: 'textSetter',
141+
setter: 'classNameSetter',
142142
},
143143
{
144144
name: 'id',
@@ -192,6 +192,12 @@ const prototypes: Dict<IComponentPrototype> = {
192192
],
193193
template: '(v) => {\n return {{content}};\n}',
194194
},
195+
{
196+
name: 'className',
197+
title: '类名',
198+
setter: 'classNameSetter',
199+
group: 'style',
200+
},
195201
],
196202
},
197203
Box: {
@@ -251,6 +257,12 @@ const prototypes: Dict<IComponentPrototype> = {
251257
},
252258
],
253259
},
260+
{
261+
name: 'className',
262+
title: '类名',
263+
setter: 'classNameSetter',
264+
group: 'style',
265+
},
254266
],
255267
},
256268
Columns: {

0 commit comments

Comments
 (0)