mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 07:27:06 +08:00
feat: add watch method for i18n and options of menu.js; ⭐
新增:为 menu.js 组件增加 i18n 和 options 选项的监听;
This commit is contained in:
parent
1ba8f20b76
commit
ec3e4b5571
@ -89,6 +89,19 @@ export default {
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
options(val) {
|
||||
if (!val[0].fullPath) {
|
||||
this.formatOptions(this.options, '')
|
||||
}
|
||||
},
|
||||
i18n(val) {
|
||||
if(val && val.messages) {
|
||||
const messages = this.i18n.messages
|
||||
Object.keys(messages).forEach(key => {
|
||||
this.$i18n.mergeLocaleMessage(key, messages[key])
|
||||
})
|
||||
}
|
||||
},
|
||||
collapsed (val) {
|
||||
if (val) {
|
||||
this.cachedOpenKeys = this.sOpenKeys
|
||||
|
Loading…
x
Reference in New Issue
Block a user