Merge branch 'dev' into extra/discussions
This commit is contained in:
commit
d4dc519a59
2 changed files with 36 additions and 36 deletions
|
@ -1,12 +1,12 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { LearningObject } from '@/data-objects/learning-objects/learning-object';
|
import type { LearningObject } from '@/data-objects/learning-objects/learning-object';
|
||||||
import type { LearningPath } from '@/data-objects/learning-paths/learning-path';
|
import type { LearningPath } from '@/data-objects/learning-paths/learning-path';
|
||||||
import { useLearningObjectListForPathQuery } from '@/queries/learning-objects';
|
import { useLearningObjectListForPathQuery } from '@/queries/learning-objects';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import UsingQueryResult from '@/components/UsingQueryResult.vue';
|
import UsingQueryResult from '@/components/UsingQueryResult.vue';
|
||||||
import QuestionNotification from "@/components/QuestionNotification.vue";
|
import QuestionNotification from "@/components/QuestionNotification.vue";
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
path: LearningPath;
|
path: LearningPath;
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { Language } from '@/data-objects/language.ts';
|
import { Language } from "@/data-objects/language.ts";
|
||||||
import { computed, type ComputedRef, watch } from 'vue';
|
import { computed, type ComputedRef, watch } from "vue";
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from "vue-router";
|
||||||
import { useGetLearningPathQuery } from '@/queries/learning-paths.ts';
|
import { useGetLearningPathQuery } from "@/queries/learning-paths.ts";
|
||||||
import UsingQueryResult from '@/components/UsingQueryResult.vue';
|
import UsingQueryResult from "@/components/UsingQueryResult.vue";
|
||||||
import { LearningPathNode } from '@/data-objects/learning-paths/learning-path-node.ts';
|
import { LearningPathNode } from "@/data-objects/learning-paths/learning-path-node.ts";
|
||||||
import { useQuestionsQuery } from '@/queries/questions';
|
import { useQuestionsQuery } from "@/queries/questions";
|
||||||
import type { QuestionsResponse } from '@/controllers/questions';
|
import type { QuestionsResponse } from "@/controllers/questions";
|
||||||
import type { LearningObjectIdentifierDTO } from '@dwengo-1/common/interfaces/learning-content';
|
import type { LearningObjectIdentifierDTO } from "@dwengo-1/common/interfaces/learning-content";
|
||||||
import QandA from '@/components/QandA.vue';
|
import QandA from "@/components/QandA.vue";
|
||||||
import type { QuestionDTO } from '@dwengo-1/common/interfaces/question';
|
import type { QuestionDTO } from "@dwengo-1/common/interfaces/question";
|
||||||
import DiscussionsSideBar from '@/components/DiscussionsSideBar.vue';
|
import DiscussionsSideBar from "@/components/DiscussionsSideBar.vue";
|
||||||
import QuestionBox from '@/components/QuestionBox.vue';
|
import QuestionBox from "@/components/QuestionBox.vue";
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from "vue-i18n";
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue