fix[Breadcurmb]: 修复router的redirect使用函数作为参数时, 点击面包屑导致页面空白的问题
parent
7ddfe81749
commit
5ba88ec53b
|
@ -57,7 +57,7 @@ export default {
|
||||||
},
|
},
|
||||||
handleLink(item) {
|
handleLink(item) {
|
||||||
const { redirect, path } = item
|
const { redirect, path } = item
|
||||||
if (redirect) {
|
if (redirect && typeof redirect !== 'function') {
|
||||||
this.$router.push(redirect)
|
this.$router.push(redirect)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue