Skip to content

Commit 307d6a1

Browse files
authored
feat(vue2): Add meta field into routes panel (#1258)
1 parent b71ae4a commit 307d6a1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/app-frontend/src/views/routes/RoutesMeta.vue

+3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ export default {
5959
if (routeData.name && routeData.name !== UNDEFINED) {
6060
data.name = routeData.name
6161
}
62+
if (routeData.meta && !this.isEmptyObject(routeData.meta)) {
63+
data.meta = routeData.meta
64+
}
6265
if (routeData.component) {
6366
const component = {}
6467
// if (routeData.component.__file) {

0 commit comments

Comments
 (0)