naive-ui/packages/mixins/themeable.js
2019-09-27 22:28:10 +08:00

18 lines
280 B
JavaScript

export default {
props: {
theme: {
type: String,
default: null
}
},
computed: {
synthesizedTheme () {
if (this.theme !== null) {
return this.theme
} else {
return (this.NApp && this.NApp.theme) || null
}
}
}
}