fix[Breadcurmb]: 修复router的redirect使用函数作为参数时, 点击面包屑导致页面空白的问题

pull/3949/head
wzc520pyf 2022-03-25 13:12:00 +08:00
parent 7ddfe81749
commit 5ba88ec53b
1 changed files with 1 additions and 1 deletions

View File

@ -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
} }