mirror of
https://github.com/cupcakearmy/svelte-i18n.git
synced 2024-11-16 18:10:43 +01:00
12 lines
237 B
Svelte
12 lines
237 B
Svelte
<script>
|
|
import { locale, loading } from './dist/i18n.mjs'
|
|
|
|
$: {
|
|
if (typeof window !== 'undefined') {
|
|
document.documentElement.setAttribute('lang', $locale)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<slot loading={$loading} locale={$locale} />
|