Skip to content

Commit

Permalink
Move "@/views/db/*" to "@/components/rdb/"
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed May 31, 2024
1 parent e934505 commit 50126fb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useRoute } from "vue-router";
import { useRdbRunQuery } from "@/graphql/codegen/generated";
import RunCard from "@/components/rdb/RunCard.vue";
import RunCard from "./RunCard.vue";
const route = useRoute();
const runNo = Number(route.params.runNo);
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/plugins/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { createRouter, createWebHistory } from "vue-router";
import type { RouteRecordRaw } from "vue-router";

import HomeView from "@/views/main/HomeView.vue";
import RunsView from "@/views/db/RunsView.vue";
import RunView from "@/views/db/RunView.vue";
import RunsView from "@/components/rdb/RunsView.vue";
import RunView from "@/components/rdb/RunView.vue";

const routes: RouteRecordRaw[] = [
{
Expand Down

0 comments on commit 50126fb

Please sign in to comment.