UNPKG

@hcflgov/vue-html-wrapper

Version:
22 lines (20 loc) 342 B
/** * @mixin */ export default { props: { /** * The Bootstrap color class of the gradient<br> * `primary, dark, light, info, success, warning, danger` */ gradient: { type: String, default: 'primary' } }, computed: { gradientClass () { return `gradient-diag-${this.gradient}` } } }