修复 Breadcrumb dump key 的问题

pull/2/head
YunaiV 2022-03-20 23:20:00 +08:00
parent 1a2c03bc7e
commit f8fffcea1b
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,8 @@ export default {
if (!name) { if (!name) {
return false return false
} }
return name.trim() === 'Index' // return name.trim() === 'Index'
return name.trim() === '首页' // Index
}, },
handleLink(item) { handleLink(item) {
const { redirect, path } = item const { redirect, path } = item