We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ffb607 commit 2aa4b64Copy full SHA for 2aa4b64
packages/vue-auth/index.ts
@@ -23,6 +23,7 @@ export const authPlugin = <U = unknown>(options: AuthOptions<U>) => {
23
// Install Pinia if not already installed
24
app.use(pinia)
25
}
26
+ console.log(isPiniaInstalled)
27
28
// Load user from storage
29
const store = useAuthStore(options.storageOptions)
packages/vue-auth/src/stores/vue-auth.ts
@@ -28,7 +28,7 @@ export function createVueAuthStore<UA = unknown>(storageOptions?: StorageOptions
const token = ref<string>()
const refreshed = ref<boolean>(false)
30
const isAuthenticated = computed(() => !!token.value)
31
- console.log(storageOptions)
+
32
/**
33
* Attempt to do a login
34
*
0 commit comments