7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
|
|
import { useAuth } from '../composables/useAuth';
|
||
|
|
|
||
|
|
export default defineNuxtPlugin(() => {
|
||
|
|
const { initAuth } = useAuth();
|
||
|
|
initAuth();
|
||
|
|
});
|