🐛 Fix circular import in router

This commit is contained in:
2023-06-05 19:45:48 +02:00
parent 7928e4941f
commit d3bfb379c4
3 changed files with 10 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
import { MenuIcon } from "lucide-vue-next";
import { computed } from "vue";
import { useRoute, useRouter, RouterLink } from "vue-router";
import { lastRoute } from "../store";
import { lastRoute } from "../router/index";
const route = useRoute();
const router = useRouter();