♻️ Replace relative paths with "@" alias
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
<script setup>
|
||||
import DayCarousel from "../components/day-carousel.vue";
|
||||
import HistoryList from "../components/history-list.vue";
|
||||
import DayCarousel from "@/components/day-carousel.vue";
|
||||
import HistoryList from "@/components/history-list.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -1,5 +1,6 @@
|
||||
<script setup>
|
||||
import ScrollableContainer from "../components/scrollable-container.vue";
|
||||
import ScrollableContainer from "@/components/scrollable-container.vue";
|
||||
import PageCard from "@/components/settings/page-card.vue";
|
||||
import {
|
||||
classList,
|
||||
classFilter,
|
||||
|
@ -1,6 +1,6 @@
|
||||
<script setup>
|
||||
import DayCarousel from "../components/day-carousel.vue";
|
||||
import SubstitutionList from "../components/substitution-list.vue";
|
||||
import DayCarousel from "@/components/day-carousel.vue";
|
||||
import SubstitutionList from "@/components/substitution-list.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -1,9 +1,9 @@
|
||||
<script setup>
|
||||
import TimetableSetup from "../components/timetable-setup.vue";
|
||||
import { classList, classFilter, timetable, loadingFailed } from "../store";
|
||||
import DayCarousel from "../components/day-carousel.vue";
|
||||
import TimetableList from "../components/timetable-list.vue";
|
||||
import InfoCard from "../components/info-card.vue";
|
||||
import TimetableSetup from "@/components/timetable-setup.vue";
|
||||
import { classList, classFilter, timetable, loadingFailed } from "@/store";
|
||||
import DayCarousel from "@/components/day-carousel.vue";
|
||||
import TimetableList from "@/components/timetable-list.vue";
|
||||
import InfoCard from "@/components/info-card.vue";
|
||||
import { ClockIcon } from "lucide-vue-next";
|
||||
import { CloudOffIcon } from "lucide-vue-next";
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user