> For the complete documentation index, see [llms.txt](https://wotamann.gitbook.io/vuetify-form-base/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wotamann.gitbook.io/vuetify-form-base/input-and-controls-1/buttons.md).

# Buttons

## Button

```javascript
// Button: 
schema: { 
    ctrl: { 
        type:'btn',
        label:'Print' 
        iconRight: 'print'
    },
    ... 
}
```

### [More Informations to Vuetify Buttons find here](https://vuetifyjs.com/en/components/buttons/).

####

## Button-Group

```javascript
// Button Group: 
schema: { 
    ctrl: { 
        type:'btn-toggle', 
        options: [
          { icon: 'format_align_left', value: 'Left', large:true, elevation:4 }, 
          { icon: 'format_align_justify', value: 'Center' },
          { icon: 'format_align_right', value: 'Right', color:'blue' }
        ]
    },
    ... 
}
```

### [More Informations to Vuetify Button Groups find here](https://vuetifyjs.com/en/components/button-groups/)

### [Example Online](https://wotamann.github.io/css/)
