We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there is a need for a best practice guideline for implementing a nested GridStack layout with Vue 3.
i have a data like this:
const demoData = [ { id: "22", x: "3", y: "3", w: 2, h: 2, widgetData: { type: "BusinessComponentA", }, }, { id: "11", x: "0", y: "0", w: 2, h: 2, children: [ { x: "3", y: "3", w: 2, h: 2, widgetData: { type: "BusinessComponentB", }, }, ], }, ];
based on the data,Expected Rendering Result:
how show i organize the code,tks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Subject of the issue
there is a need for a best practice guideline for implementing a nested GridStack layout with Vue 3.
Your environment
Steps to reproduce
i have a data like this:
based on the data,Expected Rendering Result:
Expected behavior
how show i organize the code,tks
The text was updated successfully, but these errors were encountered: