UNPKG

sce-component

Version:

21 lines (20 loc) 340 B
export default { props: { label: String, leftLabel: Boolean, color: String, disable: Boolean }, computed: { classes () { if (this.isActive) { const cls = [] cls.push('active') if (this.color) { cls.push(`text-${this.color}`) } return cls } } } }