UNPKG

vuetify

Version:

Vue.js 2 Semantic Component Framework

18 lines (15 loc) 234 B
export default { name: 'themeable', props: { dark: Boolean, light: Boolean }, computed: { themeClasses () { return { 'theme--light': this.light, 'theme--dark': this.dark } } } }