♻️ Replace relative paths with "@" alias
This commit is contained in:
10
src/App.vue
10
src/App.vue
@ -1,10 +1,10 @@
|
||||
<script setup>
|
||||
import { RouterView, useRoute } from "vue-router";
|
||||
import TitleBar from "./components/titlebar-element.vue";
|
||||
import BottomNavbar from "./components/bottom-navbar.vue";
|
||||
import DateSelector from "./components/date-selector.vue";
|
||||
import LoadingElement from "./components/loading-element.vue";
|
||||
import { loading, loadingProgress, loadingFailed, theme } from "./store";
|
||||
import TitleBar from "@/components/titlebar-element.vue";
|
||||
import BottomNavbar from "@/components/bottom-navbar.vue";
|
||||
import DateSelector from "@/components/date-selector.vue";
|
||||
import LoadingElement from "@/components/loading-element.vue";
|
||||
import { loading, loadingProgress, loadingFailed, theme } from "@/store";
|
||||
import { computed, ref } from "vue";
|
||||
|
||||
const autoThemes = { true: "dark", false: "light" };
|
||||
|
Reference in New Issue
Block a user