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>
<JqxComplexInput ref="myComplexInput"
:width="250" :height="25" :value="'15 + 7.2i'" :template="'primary'"
/>
</template>
<script>
import JqxComplexInput from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxcomplexinput.vue';
Get the template
property.
let template = this.$refs.myComplexInput.template;