Utilities
Locale

Locale

Locale provider for setting the locale and direction of the app.

Setup

The LocaleProvider component sets the locale for your app, formatting dates, numbers, and other locale-specific data.

Note: If no LocaleProvider is setup, the default locale for the app will be en-US and therefore the direction will be ltr.

<script setup lang="ts">
import { LocaleProvider } from '../'
</script>

<template>
  <LocaleProvider locale="de-DE"><!-- Your App --></LocaleProvider>
</template>

Usage

To access the current locale and direction settings, use the useLocaleContext hook.

<script setup lang="ts">
import { useLocaleContext } from '../'

const locale = useLocaleContext()
</script>

<template>
  <pre>{{ JSON.stringify(locale, null, 2) }}</pre>
</template>

API Reference

LocaleProvider

PropDefaultType
locale'en-US'
string

The locale to use for the application.