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
I am using vue + electron.js. I want to add a new tab in gl-stack with javascript code.
I understand that tabs are added when increasing the items in the array in the dynamic stack, but the tabs appear to be opened only in the same group.
<gl-stack> <gl-component v-for="(stackPane, idx) in stackPanes" v-if="paneData.length > 0" :key="stackPane" :title="'dynamic'+stackPane" @destroy="removeStackPane(stackPane, idx)" @resize="onPaneResized(idx)" > <h1>Hi</h1> <button @click="addPane">add</button> </gl-component> </gl-stack>
I want to create a tab with addPane (No mouse drag & drop) in the following layout:
Is it possible to open a tab as above programmatically? Thank you.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using vue + electron.js. I want to add a new tab in gl-stack with javascript code.
I understand that tabs are added when increasing the items in the array in the dynamic stack, but the tabs appear to be opened only in the same group.
Result (addPane):
I want to create a tab with addPane (No mouse drag & drop) in the following layout:
Is it possible to open a tab as above programmatically? Thank you.
The text was updated successfully, but these errors were encountered: