add charts.

This commit is contained in:
2023-01-24 20:51:07 +08:00
parent 7def5a4d83
commit f557135075
16 changed files with 381 additions and 24 deletions

View File

@@ -1,4 +1,6 @@
export const routes = [
import { RouteRecordRaw } from "vue-router"
export const routes: RouteRecordRaw[] = [
{
path: "/",
component: () => import("~/shared/layout/default.vue"),
@@ -41,7 +43,12 @@ export const routes = [
},
{
path: "learn",
redirect: "learn/step-1",
},
{
path: "learn/:step+",
component: () => import("learn/index.vue"),
name: "learn",
},
],
},