UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

11 lines (8 loc) 325 B
import { computed } from 'vue'; import { createContext } from '../../utils/create-context.js'; const DEFAULT_LOCALE = computed(() => ({ dir: "ltr", locale: "en-US" })); const [LocaleContextProvider, useLocaleContext] = createContext("LocaleContext"); export { DEFAULT_LOCALE, LocaleContextProvider, useLocaleContext };