fix: Vue auth.service → auth.api import 경로 누락 수정
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
이 Commit은 다음에 포함되어 있습니다:
@@ -1,7 +1,7 @@
|
|||||||
import { defineStore } from 'pinia';
|
import { defineStore } from 'pinia';
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { authService as tokenService } from '@/core/auth/auth.service';
|
import { authService as tokenService } from '@/core/auth/auth.service';
|
||||||
import { authApi } from './auth.service';
|
import { authApi } from './auth.api';
|
||||||
import type { AuthUser } from '@/core/auth/auth.types';
|
import type { AuthUser } from '@/core/auth/auth.types';
|
||||||
|
|
||||||
export const useAuthStore = defineStore('auth', () => {
|
export const useAuthStore = defineStore('auth', () => {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import Password from 'primevue/password';
|
|||||||
import Button from 'primevue/button';
|
import Button from 'primevue/button';
|
||||||
import Card from 'primevue/card';
|
import Card from 'primevue/card';
|
||||||
import Message from 'primevue/message';
|
import Message from 'primevue/message';
|
||||||
import { authApi } from '../auth.service';
|
import { authApi } from '../auth.api';
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
|
|||||||
새 Issue에서 참조
사용자 차단