Rename "circle" folder to "learningPath" folder
This commit is contained in:
parent
9d1eff5a42
commit
5a4ff1cfda
|
|
@ -1,7 +1,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import CircleDiagram from "@/components/circle/CircleDiagram.vue";
|
import CircleDiagram from "@/components/learningPath/CircleDiagram.vue";
|
||||||
import CircleOverview from "@/components/circle/CircleOverview.vue";
|
import CircleOverview from "@/components/learningPath/CircleOverview.vue";
|
||||||
import LearningSequence from "@/components/circle/LearningSequence.vue";
|
import LearningSequence from "@/components/learningPath/LearningSequence.vue";
|
||||||
import * as log from "loglevel";
|
import * as log from "loglevel";
|
||||||
|
|
||||||
import { useAppStore } from "@/stores/app";
|
import { useAppStore } from "@/stores/app";
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import LearningContent from "@/components/circle/LearningContent.vue";
|
import LearningContent from "@/components/learningPath/LearningContent.vue";
|
||||||
import { useAppStore } from "@/stores/app";
|
import { useAppStore } from "@/stores/app";
|
||||||
import { useCircleStore } from "@/stores/circle";
|
import { useCircleStore } from "@/stores/circle";
|
||||||
import type { LearningContent as LearningContentType } from "@/types";
|
import type { LearningContent as LearningContentType } from "@/types";
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import { useLearningPathStore } from "@/stores/learningPath";
|
||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import { onMounted } from "vue";
|
import { onMounted } from "vue";
|
||||||
|
|
||||||
import LearningPathDiagram from "@/components/circle/LearningPathDiagram.vue";
|
import LearningPathDiagram from "@/components/learningPath/LearningPathDiagram.vue";
|
||||||
import type { LearningPath } from "@/services/learningPath";
|
import type { LearningPath } from "@/services/learningPath";
|
||||||
import LearningPathViewVertical from "@/views/LearningPathViewVertical.vue";
|
import LearningPathViewVertical from "@/views/LearningPathViewVertical.vue";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import { useLearningPathStore } from "@/stores/learningPath";
|
||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import * as log from "loglevel";
|
import * as log from "loglevel";
|
||||||
|
|
||||||
import LearningPathDiagram from "@/components/circle/LearningPathDiagram.vue";
|
import LearningPathDiagram from "@/components/learningPath/LearningPathDiagram.vue";
|
||||||
import ItFullScreenModal from "@/components/ui/ItFullScreenModal.vue";
|
import ItFullScreenModal from "@/components/ui/ItFullScreenModal.vue";
|
||||||
|
|
||||||
log.debug("LearningPathView created");
|
log.debug("LearningPathView created");
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import * as log from "loglevel";
|
import * as log from "loglevel";
|
||||||
|
|
||||||
import SelfEvaluation from "@/components/circle/SelfEvaluation.vue";
|
import SelfEvaluation from "@/components/learningPath/SelfEvaluation.vue";
|
||||||
|
|
||||||
import { useAppStore } from "@/stores/app";
|
import { useAppStore } from "@/stores/app";
|
||||||
import { useCircleStore } from "@/stores/circle";
|
import { useCircleStore } from "@/stores/circle";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue