Browse Source

Merge branch 'dev' of https://git.citupro.com/zhengnaiwen_citu/menduner into dev

Xiao_123 10 tháng trước cách đây
mục cha
commit
aa36fc15cc
2 tập tin đã thay đổi với 23 bổ sung0 xóa
  1. 13 0
      src/router/modules/remaining.js
  2. 10 0
      src/views/mall/index.vue

+ 13 - 0
src/router/modules/remaining.js

@@ -64,6 +64,19 @@ const remainingRouter = [
       }
     ]
   },
+  {
+    path: '/mall',
+    // component: Layout,
+    children: [
+      {
+        path: '/mall',
+        component: () => import('@/views/mall/index'),
+        meta: {
+          title: '臻选商城'
+        }
+      }
+    ]
+  },
 ]
 
 setLoginType(remainingRouter, 'noLogin')

+ 10 - 0
src/views/mall/index.vue

@@ -0,0 +1,10 @@
+<!-- 臻选商城 -->
+<template>
+  <div>vue3PageInit</div>
+</template>
+
+<script setup>
+defineOptions({name: 'mall-index'})
+</script>
+<style lang="scss" scoped>
+</style>