We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b71ae4a commit 307d6a1Copy full SHA for 307d6a1
packages/app-frontend/src/views/routes/RoutesMeta.vue
@@ -59,6 +59,9 @@ export default {
59
if (routeData.name && routeData.name !== UNDEFINED) {
60
data.name = routeData.name
61
}
62
+ if (routeData.meta && !this.isEmptyObject(routeData.meta)) {
63
+ data.meta = routeData.meta
64
+ }
65
if (routeData.component) {
66
const component = {}
67
// if (routeData.component.__file) {
0 commit comments