6 lines
178 B
JavaScript
6 lines
178 B
JavaScript
export default defineNuxtPlugin((nuxtApp) => {
|
|
nuxtApp.hook('app:created', async () => {
|
|
const apiKey = useApiKey()
|
|
apiKey.value = getStoredApiKey()
|
|
})
|
|
}) |