Skip to content

Commit a741a27

Browse files
committed
fix(composeables): 🚚将composeables文件夹移入composables中
1 parent a3fc9df commit a741a27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</template>
1010
<script setup lang="ts">
1111
import { darkTheme } from "naive-ui";
12-
import useDark from "./composeables/useDark";
12+
import useDark from "./composables/useDark";
1313
const isDark = useDark()
1414
const theme = computed<typeof darkTheme | null>(() => {
1515
return isDark.value ? darkTheme : null

src/components/home.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
</template>
6565
<script setup lang="ts">
6666
import { useMessage} from "naive-ui";
67-
import useUtools from "../composeables/useUtools";
67+
import useUtools from "../composables/useUtools";
6868
const message = useMessage();
6969
const utools = useUtools()
7070

0 commit comments

Comments
 (0)