Vue ButtonGroup - items
Selector: DxItem
Type:
The items array can contain:
- Objects with fields described in this section
- Objects with any other fields. In this case, specify the buttonTemplate.
If you need to update the UI component items, reassign the entire items[] array as shown in the following example:
JavaScript
- buttonGroupInstance.option('items', newItems);
See Also
elementAttr
Specifies the global attributes to be attached to the button group item's container element.
Selector: DxElementAttr
Type:
App.vue
- <template>
- <DxButtonGroup ...
- :items="buttonGroupItems"
- />
- </template>
- <script>
- import DxButtonGroup from 'devextreme-vue/button-group';
- const buttonGroupItems = [{
- // ...
- elementAttr: {
- class: "class-name"
- }
- }, // ...
- ];
- export default {
- components: {
- DxButtonGroup,
- },
- data() {
- return {
- buttonGroupItems
- }
- }
- }
- </script>
icon
Type:
This property accepts one of the following:
- The icon's URL
- The icon's name if the icon is from the DevExtreme icon library
- The icon's CSS class if the icon is from an external icon library (see External Icon Libraries)
- The icon in the Base64 format
- The icon in the SVG format. Ensure that the source is reliable.
template
Type:
The following types of the specified value are available.
- Assign a string containing the name of the required template.
- Assign a DOM Node of the template's container.
The following example adds a custom item to the component. Note that Vue uses custom templates instead of the template property.
App.vue
- <template>
- <DxButtonGroup ... >
- <dxItem ... >
- <div>Custom Item</div>
- </dxItem>
- </DxButtonGroup>
- </template>
- <script>
- import DxButtonGroup, {
- DxItem
- } from 'devextreme-vue/button-group';
- export default {
- components: {
- DxButtonGroup,
- DxItem
- },
- // ...
- }
- </script>
See Also
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.