fix: Correct api import path

This commit is contained in:
FluxKit
2026-02-25 13:05:53 +00:00
parent 5e1b49c4de
commit 2b059e1bfb

View File

@@ -1,7 +1,7 @@
<script setup>
import { ref, computed, onMounted } from 'vue'
import { useAuthStore } from '@/stores/auth'
import api from '@/services/api'
import api from '@/lib/api'
const auth = useAuthStore()
const loading = ref(true)