新增团购券

This commit is contained in:
gyq
2024-05-21 17:11:10 +08:00
parent 5c56f5a277
commit 443f9ed305
6 changed files with 812 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
import { createRouter, createWebHashHistory } from "vue-router"
import home from "@/views/home/index.vue"
import test from "@/views/home/test.vue"
import { createRouter, createWebHashHistory } from "vue-router";
import home from "@/views/home/index.vue";
import test from "@/views/home/test.vue";
const routes = [
{
@@ -24,6 +24,14 @@ const routes = [
},
component: () => import("@/views/register.vue"),
},
{
path: "/group_buy",
name: "group_buy",
meta: {
index: 1,
},
component: () => import("@/views/group_buy/index.vue"),
},
{
path: "/table",
name: "table",
@@ -78,7 +86,7 @@ const routes = [
path: "/add_label",
name: "add_label",
component: () => import("@/views/device/add_label.vue"),
}
},
];
const router = createRouter({