vue2-client 1.8.7 → 1.8.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/package.json +1 -1
- package/src/App.vue +2 -2
- package/src/config/default/setting.config.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -46,7 +46,7 @@ export default {
|
|
|
46
46
|
const closeMessage = this.$message.loading(`您选择了主题模式 ${val}, 正在切换...`)
|
|
47
47
|
themeUtil.changeThemeColor(this.theme.color, val).then(closeMessage)
|
|
48
48
|
} else {
|
|
49
|
-
|
|
49
|
+
console.info('为保证构建性能,关闭开发环境下的主题模式切换')
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
},
|
|
@@ -57,7 +57,7 @@ export default {
|
|
|
57
57
|
const closeMessage = this.$message.loading(`您选择了主题色 ${val}, 正在切换...`)
|
|
58
58
|
themeUtil.changeThemeColor(val, this.theme.mode).then(closeMessage)
|
|
59
59
|
} else {
|
|
60
|
-
|
|
60
|
+
console.info('为保证构建性能,关闭开发环境下的主题色切换')
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
},
|