Add internationalization support (#738)

This commit is contained in:
Sasha Sorokin
2023-06-11 19:08:16 +01:00
committed by GitHub
parent 776c16cd49
commit de991041c4
12 changed files with 651 additions and 10 deletions

10
types/vintl.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
import '@vintl/vintl'
import { CompactNumber } from '@vintl/compact-number/dist/index.mjs'
declare global {
namespace VueIntlController {
interface MessageValueTypes {
compactNumber: CompactNumber
}
}
}