Browse Source

fix: playground route missing

Netfan 1 month ago
parent
commit
cddf71e600
1 changed files with 9 additions and 0 deletions
  1. 9 0
      playground/src/router/routes/modules/examples.ts

+ 9 - 0
playground/src/router/routes/modules/examples.ts

@@ -264,6 +264,15 @@ const routes: RouteRecordRaw[] = [
           title: 'JsonViewer',
         },
       },
+      {
+        name: 'Motion',
+        path: '/examples/motion',
+        component: () => import('#/views/examples/motion/index.vue'),
+        meta: {
+          icon: 'mdi:animation-play',
+          title: 'Motion',
+        },
+      },
     ],
   },
 ];