Skip to content

Commit

Permalink
docs: update
Browse files Browse the repository at this point in the history
  • Loading branch information
wwsun committed Sep 10, 2024
1 parent 8a3ab3c commit 1802fc0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion apps/playground/src/helpers/prototypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const nativeDomPrototypes = () => {
{
name: 'className',
title: '类名',
setter: 'textSetter',
setter: 'classNameSetter',
},
{
name: 'id',
Expand Down Expand Up @@ -192,6 +192,12 @@ const prototypes: Dict<IComponentPrototype> = {
],
template: '(v) => {\n return {{content}};\n}',
},
{
name: 'className',
title: '类名',
setter: 'classNameSetter',
group: 'style',
},
],
},
Box: {
Expand Down Expand Up @@ -251,6 +257,12 @@ const prototypes: Dict<IComponentPrototype> = {
},
],
},
{
name: 'className',
title: '类名',
setter: 'classNameSetter',
group: 'style',
},
],
},
Columns: {
Expand Down

0 comments on commit 1802fc0

Please sign in to comment.