fix[ThemePicker]: fixed bug when oldVal is null (#1517)
This commit is contained in:
parent
77113a0cb2
commit
bae3601606
|
@ -18,7 +18,8 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
theme(val, oldVal) {
|
theme(val) {
|
||||||
|
const oldVal = this.theme
|
||||||
if (typeof val !== 'string') return
|
if (typeof val !== 'string') return
|
||||||
const themeCluster = this.getThemeCluster(val.replace('#', ''))
|
const themeCluster = this.getThemeCluster(val.replace('#', ''))
|
||||||
const originalCluster = this.getThemeCluster(oldVal.replace('#', ''))
|
const originalCluster = this.getThemeCluster(oldVal.replace('#', ''))
|
||||||
|
|
Loading…
Reference in New Issue