视图路径修改

This commit is contained in:
2025-10-27 17:29:25 +08:00
parent 5fa4e1cd42
commit 0033ac10ec
69 changed files with 162 additions and 1199 deletions

View File

@@ -16,7 +16,7 @@
<script setup lang="ts">
import { ref } from 'vue';
import { CourseList, CourseAdd } from '@/views/course/components';
import { CourseList, CourseAdd } from '@/views/public/course/components';
import type { Course } from '@/types/study';
type ViewType = 'list' | 'add' | 'edit';

View File

@@ -16,7 +16,7 @@
<script setup lang="ts">
import { ref } from 'vue';
import { LearningTaskList, LearningTaskAdd } from '@/views/task';
import { LearningTaskList, LearningTaskAdd } from '@/views/public/task';
import type { LearningTask } from '@/types/study';
defineOptions({