chore: 构建大小写问题
This commit is contained in:
@@ -2,7 +2,7 @@ import { createRouter, createWebHistory } from "vue-router";
|
||||
import Layout from "../layout/Index.vue";
|
||||
import NotFound from "../views/error/404.vue";
|
||||
import LoginLayout from "../layout/LoginLayout.vue";
|
||||
import SignInLayout from "../layout/signIn/index.vue";
|
||||
import ActivityLayout from "../layout/activity/Index.vue";
|
||||
const router = createRouter({
|
||||
history: createWebHistory(import.meta.env.BASE_URL),
|
||||
scrollBehavior(to, from, savedPosition) {
|
||||
@@ -100,15 +100,15 @@ const router = createRouter({
|
||||
],
|
||||
},
|
||||
{
|
||||
path: "/sign",
|
||||
name: "signInLayout",
|
||||
component: SignInLayout,
|
||||
redirect: "/sign/everyday",
|
||||
path: "/activity",
|
||||
name: "activityLayout",
|
||||
component: ActivityLayout,
|
||||
redirect: "/activity/sign",
|
||||
children: [
|
||||
{
|
||||
name: "everyday",
|
||||
path: "everyday",
|
||||
component: () => import("../views/signIn/index.vue"),
|
||||
name: "sign",
|
||||
path: "sign",
|
||||
component: () => import("../views/signIn/Index.vue"),
|
||||
meta: {
|
||||
title: "每日签到",
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user