move file

This commit is contained in:
MaysWind
2025-01-07 00:08:27 +08:00
parent b0a9b2366e
commit cb142a65f3
8 changed files with 15 additions and 14 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
<script setup lang="ts">
import { type Ref, ref, watch } from 'vue';
import { useI18n } from '@/lib/i18n.js';
import { useI18n } from '@/locales/helper.js';
import { isString } from '@/lib/common.ts';
const props = defineProps<{
+1 -1
View File
@@ -12,7 +12,7 @@
import { type Ref, ref, watch } from 'vue';
import { isObject } from '@/lib/common.ts';
import { useI18n } from '@/lib/i18n.js';
import { useI18n } from '@/locales/helper.js';
const emit = defineEmits<{
(e: 'update:show', value: boolean): void