mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
18 lines
291 B
JavaScript
18 lines
291 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.synthesizedTheme) || null
|
|
}
|
|
}
|
|
}
|
|
}
|