统一导入

This commit is contained in:
2025-10-05 20:07:41 +08:00
parent 2b93a9e849
commit 7e6d03ca1a
77 changed files with 211 additions and 211 deletions

View File

@@ -18,9 +18,9 @@
</template>
<script lang="ts" setup>
import { NButton } from "naive-ui"
import Pagination from "~/shared/components/Pagination.vue"
import { parseTime } from "~/utils/functions"
import { Comment } from "~/utils/types"
import Pagination from "shared/components/Pagination.vue"
import { parseTime } from "utils/functions"
import { Comment } from "utils/types"
import { getCommentList } from "../api"
import CommentActions from "./components/CommentActions.vue"

View File

@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { deleteComment } from "~/admin/api"
import { deleteComment } from "admin/api"
const props = defineProps<{ commentID: number }>()
const emit = defineEmits(["deleted"])