You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a great tool. Is there support for nested objects? For example in this case items is the final object and the nesting is present because of "children" parameter. It would be great if we could use this form of nesting in templates for generation.
This is a great tool. Is there support for nested objects? For example in this case items is the final object and the nesting is present because of "children" parameter. It would be great if we could use this form of nesting in templates for generation.
const items = [
{ id: 0, text: 'Andy' },
{
id: 1, text: 'Harry',
children: [{ id: 2, text: 'David' }]
},
{ id: 3, text: 'Lisa' }
];
The text was updated successfully, but these errors were encountered: