mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
22 lines
619 B
Vue
Executable file
22 lines
619 B
Vue
Executable file
<template>
|
|
<div :class="cx('root')" role="toolbar" :aria-labelledby="ariaLabelledby" v-bind="ptm('root')" data-pc-name="toolbar">
|
|
<div :class="cx('start')" v-bind="ptm('start')">
|
|
<slot name="start"></slot>
|
|
</div>
|
|
<div :class="cx('center')" v-bind="ptm('center')">
|
|
<slot name="center"></slot>
|
|
</div>
|
|
<div :class="cx('end')" v-bind="ptm('end')">
|
|
<slot name="end"></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseToolbar from './BaseToolbar.vue';
|
|
|
|
export default {
|
|
name: 'Toolbar',
|
|
extends: BaseToolbar
|
|
};
|
|
</script>
|