Skip to content

Instantly share code, notes, and snippets.

@brachkow
Created August 3, 2023 17:14
Show Gist options
  • Save brachkow/5e57591096ebd23639db62777f6ea9a2 to your computer and use it in GitHub Desktop.
Save brachkow/5e57591096ebd23639db62777f6ea9a2 to your computer and use it in GitHub Desktop.
Vite Vue i18n mock
vi.mock('vue-i18n', () => ({
useI18n: () => ({
t: (tKey: string) => tKey,
}),
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment