Skip to content

Commit

Permalink
Move "@/view/QueueView.vue" to "@/components/schedule/queue/"
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed May 31, 2024
1 parent 50126fb commit 912d20a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/schedule/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export { default as AutoModeButton } from "./auto-mode/auto-mode-button/AutoModeButton.vue";
export { default as QueueFrame } from "./queue/QueueFrame.vue";
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
</template>

<script setup lang="ts">
import { QueueFrame } from "@/components/schedule";
import QueueFrame from "./QueueFrame.vue";
</script>
2 changes: 1 addition & 1 deletion src/plugins/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const routes: RouteRecordRaw[] = [
{
path: "/queue",
name: "queue",
component: () => import("@/views/QueueView.vue"),
component: () => import("@/components/schedule/queue/QueueView.vue"),
},
{
path: "/db/runs",
Expand Down

0 comments on commit 912d20a

Please sign in to comment.