jwyu 2 years ago
parent
commit
bc44d58ab0
2 changed files with 17 additions and 0 deletions
  1. 10 0
      src/router/index.js
  2. 7 0
      src/views/voice/Mine.vue

+ 10 - 0
src/router/index.js

@@ -362,6 +362,16 @@ const routes=[
           keepAlive:true,
           keepAlive:true,
           isRoot:true
           isRoot:true
         }
         }
+      },
+      {
+        path:"mine",
+        name:"VoiceMine",
+        component:()=>import('@/views/voice/Mine.vue'),
+        meta: {
+          title: "我的语音",
+          keepAlive:true,
+          isRoot:false
+        }
       }
       }
     ]
     ]
   },
   },

+ 7 - 0
src/views/voice/Mine.vue

@@ -0,0 +1,7 @@
+<script setup>
+
+</script>
+
+<template>
+    <div>wode</div>
+</template>