We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d6093 commit a783907Copy full SHA for a783907
template/frameworks/mobile/layouts/layout-with-footer.vue
@@ -48,6 +48,14 @@ export default {
48
}
49
]
50
51
+ },
52
+ watch: {
53
+ $route: {
54
+ handler({path}) {
55
+ this.active = this.footerTab.findIndex(e => e.url === path)
56
57
+ immediate: true
58
+ }
59
60
61
</script>
template/frameworks/mobile/pages/order-list.vue
@@ -15,6 +15,7 @@
15
import DataList from '@femessage/data-list'
16
17
export default {
18
+ layout: 'layout-with-footer',
19
components: {
20
DataList
21
},
0 commit comments