diff --git a/src/tabbar-item/index.js b/src/tabbar-item/index.js index 3bd079033..3df8e97e7 100644 --- a/src/tabbar-item/index.js +++ b/src/tabbar-item/index.js @@ -32,19 +32,22 @@ export default createComponent({ }, computed: { - routeMatched() { - const { to, $route } = this; - if (to && $route) { + active() { + const routeMode = this.parent.route; + + if (routeMode && '$route' in this) { + const { to, $route } = this; const config = isObject(to) ? to : { path: to }; - return !!$route.matched.find(r =>{ - const pathMatched = config.path === r.path; + return !!$route.matched.find((r) => { + // vue-router 3.x $route.matched[0].path is empty in / and its children paths + const path = r.path === '' ? '/' : r.path; + const pathMatched = config.path === path; const nameMatched = isDef(config.name) && config.name === r.name; return pathMatched || nameMatched; - }) + }); } - }, - active() { - return this.parent.route ? this.routeMatched : this.nameMatched; + + return this.nameMatched; }, }, diff --git a/src/tabbar/index.js b/src/tabbar/index.js index d5d73cff2..bcf2f6543 100644 --- a/src/tabbar/index.js +++ b/src/tabbar/index.js @@ -69,7 +69,7 @@ export default createComponent({ methods: { setActiveItem() { this.children.forEach((item, index) => { - item.nameMatched = (item.name || index) === this.value; + item.nameMatched = item.name === this.value || index === this.value; }); }, diff --git a/src/tabbar/test/__snapshots__/index.spec.js.snap b/src/tabbar/test/__snapshots__/index.spec.js.snap index d9d4f9391..9904a7823 100644 --- a/src/tabbar/test/__snapshots__/index.spec.js.snap +++ b/src/tabbar/test/__snapshots__/index.spec.js.snap @@ -10,7 +10,7 @@ exports[`placeholder prop 1`] = ` exports[`route mode 1`] = `
-
+