Determines the template as an alternative of the default styles.
Possible Values:
'default' - the default template. The style depends only on the "theme" property value.
'primary' - dark blue style for extra visual weight.
'success' - green style for successful or positive action.
'warning' - orange style which indicates caution.
'danger' - red style which indicates a dangerous or negative action.
'info' - blue button, not tied to a semantic action or use.
<template>
<JqxButtonGroup ref="myButtonGroup"
:template="'success'">
<button style='padding: 4px 16px' id='Left' value='Left'></button>
<button style='padding: 4px 16px' id='Center' value='Center'></button>
<button style='padding: 4px 16px' id='Right' value='Right'></button>
</JqxButtonGroup>
</template>
<script> import JqxButtonGroup from
'jqwidgets-scripts/jqwidgets-vue/vue_jqxbuttongroup.vue';