2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2022-12-22 08:40:59 +00:00
|
|
|
<AppDoc name="ToolbarDemo" :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 Toolbar from 'primevue/toolbar';
|
|
|
|
|
|
|
|
</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/toolbar/toolbar.min.js"></script>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Getting Started</h5>
|
|
|
|
<p>Toolbar provides <i>start</i>, <i>center</i> and <i>end</i> templates to place content at these sections.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Toolbar>
|
|
|
|
<template #start>
|
|
|
|
<Button label="New" icon="pi pi-plus" class="mr-2" />
|
|
|
|
<Button label="Upload" icon="pi pi-upload" class="p-button-success" />
|
|
|
|
<i class="pi pi-bars p-toolbar-separator mr-2" />
|
|
|
|
<SplitButton label="Save" icon="pi pi-check" :model="items" class="p-button-warning"></SplitButton>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #end>
|
|
|
|
<Button icon="pi pi-search" class="mr-2" />
|
|
|
|
<Button icon="pi pi-calendar" class="p-button-success mr-2" />
|
|
|
|
<Button icon="pi pi-times" class="p-button-danger" />
|
|
|
|
</template>
|
|
|
|
</Toolbar>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Slots</h5>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Parameters</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>start</td>
|
|
|
|
<td>-</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>end</td>
|
|
|
|
<td>-</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-toolbar</td>
|
|
|
|
<td>Main container element.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-toolbar-group-start</td>
|
|
|
|
<td>Start content container.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-toolbar-group-center</td>
|
|
|
|
<td>Center content container.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-toolbar-group-end</td>
|
|
|
|
<td>End content container.</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>
|
|
|
|
Toolbar uses <i>toolbar</i> role to the root element, <i>aria-orientation</i> is not included as it defaults to "horizontal". Any valid attribute is passed to the root element so you may add additional properties like
|
|
|
|
<i>aria-labelledby</i> to define the element if required.
|
|
|
|
</p>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-20 17:28:51 +00:00
|
|
|
<h5>Keyboard Support</h5>
|
|
|
|
<p>Component does not include any interactive elements. Arbitrary content can be placed with templating and elements like buttons inside should follow the page tab sequence.</p>
|
2022-09-09 20:41:18 +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>
|
|
|
|
<Toolbar>
|
|
|
|
<template #start>
|
|
|
|
<Button label="New" icon="pi pi-plus" class="mr-2" />
|
|
|
|
<Button label="Upload" icon="pi pi-upload" class="p-button-success" />
|
|
|
|
<i class="pi pi-bars p-toolbar-separator mr-2" />
|
|
|
|
<SplitButton label="Save" icon="pi pi-check" :model="items" class="p-button-warning"></SplitButton>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #end>
|
|
|
|
<Button icon="pi pi-search" class="mr-2" />
|
|
|
|
<Button icon="pi pi-calendar" class="p-button-success mr-2" />
|
|
|
|
<Button icon="pi pi-times" class="p-button-danger" />
|
|
|
|
</template>
|
|
|
|
</Toolbar>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
label: 'Update',
|
|
|
|
icon: 'pi pi-refresh'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Delete',
|
|
|
|
icon: 'pi pi-times'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Vue Website',
|
|
|
|
icon: 'pi pi-external-link',
|
|
|
|
command: () => {
|
|
|
|
window.location.href = 'https://vuejs.org/'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ label: 'Upload',
|
|
|
|
icon: 'pi pi-upload',
|
|
|
|
command: () => {
|
|
|
|
window.location.hash = "/fileupload"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<\\/script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.p-button,
|
|
|
|
.p-splitbutton {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
</style>`
|
|
|
|
},
|
|
|
|
'composition-api': {
|
|
|
|
tabName: 'Composition API Source',
|
|
|
|
content: `
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<Toolbar>
|
|
|
|
<template #start>
|
|
|
|
<Button label="New" icon="pi pi-plus" class="mr-2" />
|
|
|
|
<Button label="Upload" icon="pi pi-upload" class="p-button-success" />
|
|
|
|
<i class="pi pi-bars p-toolbar-separator mr-2" />
|
|
|
|
<SplitButton label="Save" icon="pi pi-check" :model="items" class="p-button-warning"></SplitButton>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #end>
|
|
|
|
<Button icon="pi pi-search" class="mr-2" />
|
|
|
|
<Button icon="pi pi-calendar" class="p-button-success mr-2" />
|
|
|
|
<Button icon="pi pi-times" class="p-button-danger" />
|
|
|
|
</template>
|
|
|
|
</Toolbar>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
setup() {
|
|
|
|
const items = ref([
|
|
|
|
{
|
|
|
|
label: 'Update',
|
|
|
|
icon: 'pi pi-refresh'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Delete',
|
|
|
|
icon: 'pi pi-times'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Vue Website',
|
|
|
|
icon: 'pi pi-external-link',
|
|
|
|
command: () => {
|
|
|
|
window.location.href = 'https://vuejs.org/'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ label: 'Upload',
|
|
|
|
icon: 'pi pi-upload',
|
|
|
|
command: () => {
|
|
|
|
window.location.hash = "/fileupload"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
|
|
|
|
return { items }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<\\/script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.p-button,
|
|
|
|
.p-splitbutton {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
</style>`
|
|
|
|
},
|
|
|
|
'browser-source': {
|
|
|
|
tabName: 'Browser Source',
|
|
|
|
imports: `<script src="https://unpkg.com/primevue@^3/toolbar/toolbar.min.js"><\\/script>
|
|
|
|
<script src="https://unpkg.com/primevue@^3/splitbutton/splitbutton.min.js"><\\/script>`,
|
|
|
|
content: `<div id="app">
|
|
|
|
<p-toolbar>
|
|
|
|
<template #start>
|
|
|
|
<p-button label="New" icon="pi pi-plus" class="mr-2"></p-button>
|
|
|
|
<p-button label="Upload" icon="pi pi-upload" class="p-button-success"></p-button>
|
|
|
|
<i class="pi pi-bars p-toolbar-separator mr-2"></i>
|
|
|
|
<p-splitbutton label="Save" icon="pi pi-check" :model="items" class="p-button-warning"></p-splitbutton>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #end>
|
|
|
|
<p-button icon="pi pi-search" class="mr-2"></p-button>
|
|
|
|
<p-button icon="pi pi-calendar" class="p-button-success mr-2"></p-button>
|
|
|
|
<p-button icon="pi pi-times" class="p-button-danger"></p-button>
|
|
|
|
</template>
|
|
|
|
</p-toolbar>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="module">
|
|
|
|
const { createApp, ref } = Vue;
|
|
|
|
|
|
|
|
const App = {
|
|
|
|
setup() {
|
|
|
|
const items = ref([
|
|
|
|
{
|
|
|
|
label: 'Update',
|
|
|
|
icon: 'pi pi-refresh'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Delete',
|
|
|
|
icon: 'pi pi-times'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Vue Website',
|
|
|
|
icon: 'pi pi-external-link',
|
|
|
|
command: () => {
|
|
|
|
window.location.href = 'https://vuejs.org/'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ label: 'Upload',
|
|
|
|
icon: 'pi pi-upload',
|
|
|
|
command: () => {
|
|
|
|
window.location.hash = "/fileupload"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]);
|
|
|
|
|
|
|
|
return { items }
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
"p-toolbar": primevue.toolbar,
|
|
|
|
"p-splitbutton": primevue.splitbutton,
|
|
|
|
"p-button": primevue.button
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
createApp(App)
|
|
|
|
.use(primevue.config.default)
|
|
|
|
.mount("#app");
|
|
|
|
<\\/script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.p-button {
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|
|
|
|
</style>`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|