Button group - Frameworks
Button group is a grouping concept for buttons.
iOSreleasedVuereleased
Vue
Import
Use in entire app
js
import { ButtonGroup } from '@warp-ds/vue';
app.use(ButtonGroup);Use in one component and special imports
You can import the component like so:
js
import { wButtonGroup, wButtonGroupItem } from '@warp-ds/vue';or import it individually to optimize your JS bundle size by adding only the components you need:
js
import { wButtonGroup, wButtonGroupItem } from '@warp-ds/vue/button-group';Syntax
vue
<w-button-group>
<w-button-group-item :selected="props.selected">
<w-clickable label radio v-model="radioModel" value="foo">Foo</w-clickable>
</w-button-group-item>
<w-button-group-item :selected="active('Radio') && radioModel === 'bar'">
<w-clickable label radio v-model="radioModel" value="bar">Bar</w-clickable>
</w-button-group-item>
<w-button-group-item :selected="active('Radio') && radioModel === 'baz'">
<w-clickable label radio v-model="radioModel" value="baz">Baz</w-clickable>
</w-button-group-item>
</w-button-group>Props
ButtonGroup props
Optional Props
| Name | Type | Default | Description |
|---|---|---|---|
| outlined | boolean | Outlines the button-group | |
| raised | boolean | Adds shadow to the button-group | |
| vertical | boolean | Changes the orientation to vertical |
Slots
| Name | Description |
|---|---|
| default | where all the buttons go |
ButtonGroupItem props
Optional Props
| Name | Type | Default | Description |
|---|---|---|---|
| selected | boolean | Used to give the item a selected appearance - e.g. when used with toggles |
Slots
| Name | Description |
|---|---|
| default | button content |
Questions?
Feel free to ask any questions on usage in the Warp DS Slack channel: #warp-design-system