naive-ui/packages/mixins/themeable.js

18 lines
291 B
JavaScript
Raw Normal View History

2019-09-17 19:29:27 +08:00
export default {
props: {
theme: {
type: String,
default: null
}
},
computed: {
synthesizedTheme () {
if (this.theme !== null) {
return this.theme
} else {
2019-10-12 16:09:30 +08:00
return (this.NApp && this.NApp.synthesizedTheme) || null
2019-09-17 19:29:27 +08:00
}
}
}
}