refactor: import local components instead of using full name

This commit is contained in:
2025-11-13 21:27:10 +01:00
parent 25c2625a1d
commit 5366437f60

View File

@@ -1,6 +1,13 @@
<script setup lang="ts">
import Background from "./Background.vue";
import Calendar from "./Calendar.vue";
import Clock from "./Clock.vue";
import StatusBar from "./StatusBar.vue";
</script>
<template> <template>
<HomeTopScreenBackground /> <Background />
<HomeTopScreenCalendar /> <Calendar />
<HomeTopScreenClock /> <Clock />
<HomeTopScreenStatusBar /> <StatusBar />
</template> </template>