UNPKG

quasar-framework

Version:

Simultaneously build desktop/mobile SPA websites & phone/tablet apps with VueJS

17 lines (16 loc) 232 B
export default { props: { color: String, size: { type: [Number, String], default: '1em' } }, computed: { classes () { if (this.color) { return `text-${this.color}` } } } }