2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2022-12-22 08:40:59 +00:00
|
|
|
<AppDoc name="SplitterDemo" :sources="sources">
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Import via Module</h5>
|
|
|
|
<pre v-code.script><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
import Splitter from 'primevue/splitter';
|
|
|
|
import SplitterPanel from 'primevue/splitterpanel';
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Import via CDN</h5>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<script src="https://unpkg.com/primevue@^3/core/core.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/primevue@^3/splitter/splitter.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/primevue@^3/splitterpanel/splitterpanel.min.js"></script>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Getting Started</h5>
|
|
|
|
<p>Splitter requires two SplitterPanel components to wrap.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter style="height: 300px">
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Multiple Panels</h5>
|
|
|
|
<p>Any number of panels can be nested inside a Splitter.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter style="height: 300px">
|
|
|
|
<SplitterPanel v-for="item of items" :key="item.key">
|
2022-12-20 17:28:51 +00:00
|
|
|
{{item.content}}
|
2022-09-09 20:41:18 +00:00
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
2022-12-20 17:28:51 +00:00
|
|
|
|
2022-09-09 20:41:18 +00:00
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Layout</h5>
|
|
|
|
<p>Default orientation is configured with the <i>layout</i> property and default is the "horizontal" whereas other alternative is the "vertical".</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter style="height: 300px" layout="vertical">
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Initial Sizes</h5>
|
|
|
|
<p>When no size is defined, panels are split 50/50, use the <i>size</i> property to give relative widths e.g. 20/80.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter style="height: 300px">
|
|
|
|
<SplitterPanel :size="20" >
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="80">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Minimum Size</h5>
|
|
|
|
<p>Minimum size defines the lowest boundary for the size of a panel.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter style="height: 300px">
|
|
|
|
<SplitterPanel :size="20" :minSize="10">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="80" :minSize="20">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Nested Panels</h5>
|
|
|
|
<p>Splitters can be combined to create advanced layouts.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter style="height: 300px">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="20" :minSize="10">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="80">
|
|
|
|
<Splitter layout="vertical">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="15">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="85">
|
|
|
|
<Splitter>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="20">
|
|
|
|
Panel 3
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="80">
|
|
|
|
Panel 4
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Stateful</h5>
|
|
|
|
<p>
|
|
|
|
Splitters can be configured as stateful so that when the user visits the page again, the adjusts sizes can be restored. Define a <i>stateKey</i> to enable this feature. Default location of the state is session storage and other option is
|
|
|
|
the local storage which can be configured using the <i>stateStorage</i> property.
|
|
|
|
</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter stateKey="mykey" stateStorage="local">
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Steps</h5>
|
|
|
|
<p>Step factor is 5px by default and can be customized with <i>step</i> option.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Splitter :step="10">
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel>
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Properties of SplitterPanel</h5>
|
|
|
|
<p>Any property as style and class are passed to the main container element. Following are the additional properties to configure the component.</p>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Default</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>size</td>
|
|
|
|
<td>number</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Size of the element relative to 100%.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>minSize</td>
|
|
|
|
<td>number</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Minimum size of the element relative to 100%.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Properties of Splitter</h5>
|
|
|
|
<p>Any property as style and class are passed to the main container element. Following are the additional properties to configure the component.</p>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Default</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>layout</td>
|
|
|
|
<td>string</td>
|
|
|
|
<td>horizontal</td>
|
|
|
|
<td>Orientation of the panels, valid values are "horizontal" and "vertical".</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>gutterSize</td>
|
|
|
|
<td>number</td>
|
|
|
|
<td>4</td>
|
|
|
|
<td>Size of the divider in pixels.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>stateKey</td>
|
|
|
|
<td>string</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Storage identifier of a stateful Splitter.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>stateStorage</td>
|
|
|
|
<td>string</td>
|
|
|
|
<td>session</td>
|
|
|
|
<td>Defines where a stateful splitter keeps its state, valid values are "session" for sessionStorage and "local" for localStorage.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>step</td>
|
|
|
|
<td>number</td>
|
|
|
|
<td>5</td>
|
|
|
|
<td>Step factor to increment/decrement the size of the panels while pressing the arrow keys.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Events of Splitter</h5>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Parameters</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>resizestart</td>
|
|
|
|
<td>
|
|
|
|
event.originalEvent: Original event <br />
|
|
|
|
event.sizes: Sizes of the panels as an array
|
|
|
|
</td>
|
|
|
|
<td>Callback to invoke when resize starts.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>resizeend</td>
|
|
|
|
<td>
|
|
|
|
event.originalEvent: Original event <br />
|
|
|
|
event.sizes: Sizes of the panels as an array
|
|
|
|
</td>
|
|
|
|
<td>Callback to invoke when resize ends.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Styling</h5>
|
|
|
|
<p>Following is the list of structural style classes, for theming classes visit <router-link to="/theming">theming</router-link> page.</p>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Element</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>p-splitter</td>
|
|
|
|
<td>Container element.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-splitter</td>
|
|
|
|
<td>Container element during resize.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-splitter-horizontal</td>
|
|
|
|
<td>Container element with horizontal layout.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-splitter-vertical</td>
|
|
|
|
<td>Container element with vertical layout.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-splitter-panel</td>
|
|
|
|
<td>Splitter panel element.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-splitter-gutter</td>
|
|
|
|
<td>Gutter element to use when resizing the panels.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-splitter-gutter-handle</td>
|
|
|
|
<td>Handle element of the gutter.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Accessibility</h5>
|
|
|
|
<h6>Screen Reader</h6>
|
|
|
|
<p>Splitter bar defines <i>separator</i> as the role with <i>aria-orientation</i> set to either horizontal or vertical.</p>
|
2022-09-14 14:26:41 +00:00
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h6>Keyboard Support</h6>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Key</th>
|
|
|
|
<th>Function</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td><i>tab</i></td>
|
|
|
|
<td>Moves focus through the splitter bar.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><i>down arrow</i></td>
|
|
|
|
<td>Moves a vertical splitter down.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><i>up arrow</i></td>
|
|
|
|
<td>Moves a vertical splitter up.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><i>left arrow</i></td>
|
|
|
|
<td>Moves a horizontal splitter to the left.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><i>right arrow</i></td>
|
|
|
|
<td>Moves a horizontal splitter to the right.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-14 14:26:41 +00:00
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Dependencies</h5>
|
|
|
|
<p>None.</p>
|
|
|
|
</AppDoc>
|
2022-09-09 20:41:18 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
sources: {
|
|
|
|
'options-api': {
|
|
|
|
tabName: 'Options API Source',
|
|
|
|
content: `
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="card">
|
|
|
|
<h5>Horizontal</h5>
|
|
|
|
<Splitter style="height: 300px" class="mb-5">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<h5>Vertical</h5>
|
|
|
|
<Splitter style="height: 300px" layout="vertical">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<h5>Nested</h5>
|
|
|
|
<Splitter style="height: 300px">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="20" :minSize="10">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="80">
|
|
|
|
<Splitter layout="vertical">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="15">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="85">
|
|
|
|
<Splitter>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="20">
|
|
|
|
Panel 3
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="80">
|
|
|
|
Panel 4
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
}
|
|
|
|
<\\/script>`
|
|
|
|
},
|
|
|
|
'composition-api': {
|
|
|
|
tabName: 'Composition API Source',
|
|
|
|
content: `
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="card">
|
|
|
|
<h5>Horizontal</h5>
|
|
|
|
<Splitter style="height: 300px" class="mb-5">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<h5>Vertical</h5>
|
|
|
|
<Splitter style="height: 300px" layout="vertical">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<h5>Nested</h5>
|
|
|
|
<Splitter style="height: 300px">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="20" :minSize="10">
|
|
|
|
Panel 1
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="80">
|
|
|
|
<Splitter layout="vertical">
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="15">
|
|
|
|
Panel 2
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel :size="85">
|
|
|
|
<Splitter>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="20">
|
|
|
|
Panel 3
|
|
|
|
</SplitterPanel>
|
|
|
|
<SplitterPanel class="flex align-items-center justify-content-center" :size="80">
|
|
|
|
Panel 4
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</SplitterPanel>
|
|
|
|
</Splitter>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
}
|
|
|
|
<\\/script>`
|
|
|
|
},
|
|
|
|
'browser-source': {
|
|
|
|
tabName: 'Browser Source',
|
|
|
|
imports: `<script src="https://unpkg.com/primevue@^3/splitter/splitter.min.js"><\\/script>
|
|
|
|
<script src="https://unpkg.com/primevue@^3/splitterpanel/splitterpanel.min.js"><\\/script>`,
|
|
|
|
content: `<div id="app">
|
|
|
|
<div class="card">
|
|
|
|
<h5>Horizontal</h5>
|
|
|
|
<p-splitter style="height: 300px" class="mb-5">
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 1
|
|
|
|
</p-splitterpanel>
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 2
|
|
|
|
</p-splitterpanel>
|
|
|
|
</p-splitter>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<h5>Vertical</h5>
|
|
|
|
<p-splitter style="height: 300px" layout="vertical">
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 1
|
|
|
|
</p-splitterpanel>
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center">
|
|
|
|
Panel 2
|
|
|
|
</p-splitterpanel>
|
|
|
|
</p-splitter>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<h5>Nested</h5>
|
|
|
|
<p-splitter style="height: 300px">
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center" :size="20" :minSize="10">
|
|
|
|
Panel 1
|
|
|
|
</p-splitterpanel>
|
|
|
|
<p-splitterpanel :size="80">
|
|
|
|
<p-splitter layout="vertical">
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center" :size="15">
|
|
|
|
Panel 2
|
|
|
|
</p-splitterpanel>
|
|
|
|
<p-splitterpanel :size="85">
|
|
|
|
<p-splitter>
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center" :size="20">
|
|
|
|
Panel 3
|
|
|
|
</p-splitterpanel>
|
|
|
|
<p-splitterpanel class="flex align-items-center justify-content-center" :size="80">
|
|
|
|
Panel 4
|
|
|
|
</p-splitterpanel>
|
|
|
|
</p-splitter>
|
|
|
|
</p-splitterpanel>
|
|
|
|
</p-splitter>
|
|
|
|
</p-splitterpanel>
|
|
|
|
</p-splitter>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
const { createApp } = Vue;
|
|
|
|
|
|
|
|
const App = {
|
|
|
|
components: {
|
|
|
|
"p-splitter": primevue.splitter,
|
|
|
|
"p-splitterpanel": primevue.splitterpanel
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
createApp(App)
|
|
|
|
.use(primevue.config.default)
|
|
|
|
.mount("#app");
|
|
|
|
<\\/script>`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|