-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
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
Split panel component #1725
Labels
Milestone
Comments
m0ksem
added
feature
Something useful to end user
review required
component
Is a new component or part of existing one
labels
May 4, 2022
Can be part of #1430 |
added to my to-do list ✅ |
aluarius
added a commit
to aluarius/vuestic-ui
that referenced
this issue
Jul 10, 2022
aluarius
added a commit
to aluarius/vuestic-ui
that referenced
this issue
Jul 10, 2022
4 tasks
aluarius
added a commit
that referenced
this issue
Aug 9, 2022
Closed via #2068 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Live examples:
References:
Splitter tag variants:
va-split
,va-splitter
,va-split-panes
,va-split-panels
.Splitter props:
resizable
: boolean - may bedisabled
instead. Prohibits splitter panes size change.direction
: 'horizontal' | 'vertical' - may beisHorizontal
boolean instead.gutterSize
: number - inpx
. Width/height of the element, that triggers resizing.limits
: [number, number] - inpx
, default min/max size value for all panes. Max value ignored, if max width/height of the all panes < splitter width/height.paneSize
: number - default width/height of each pane in percents (100 / panes amount).maximizeWithDblClick
: boolean - maximize next pane width via gutter double click.leftPaneMaximization
: boolean - flag to maximize previous pane width/height instead of next.Splitter emits:
update:modelValue
: number[] - payload contains all panes width in px.Splitter slots
VaDivider
as a default).Usage example:
<va-splitter direction="horizontal"> <template #before="{ size }"> Left </template> <template #after="{ size }"> Right </template> </va-split-panel>
The text was updated successfully, but these errors were encountered: