UNPKG

element3

Version:

A Component Library for Vue3

11 lines (9 loc) 229 B
import { t } from '../locale' import { getCurrentInstance } from 'vue' function useLocale() { return function (...args) { const instance = getCurrentInstance() return t.apply(instance, args) } } export { useLocale }