New to Kendo UI for Vue? Start a free 30-day trial
ToolbarSeparator
Represents the Kendo UI for Vue ToolbarSeparator component. A separator element for the sub-elements of the Toolbar.
jsx
<template>
<div>
<Toolbar>
<SplitButton
:class="'k-toolbar-split-button'"
:text="'Insert'"
:items="splitItems"
>
</SplitButton>
<ToolbarSeparator />
<DropDownButton
:text="'Paste'"
:svg-icon="clipboardIcon"
:items="ddItems"
>
</DropDownButton>
</Toolbar>
</div>
</template>