Created
August 3, 2023 17:14
-
-
Save brachkow/5e57591096ebd23639db62777f6ea9a2 to your computer and use it in GitHub Desktop.
Vite Vue i18n mock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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