vue-i18n
vue-i18n copied to clipboard
Vue I18n for Vue 3
### Clear and concise description of the problem I use phpstorm as my IDE, and it helps detect missing html tags and/or vue components in vue SFCs. Problem is, phpstorm...
### Reporting a bug? It seems that the upcoming TypeScript version will not handle the current implementation of vueI18n lightly. In version 4.5.1-rc this when you try to `app.use(i18n)` in...
### Clear and concise description of the problem hi @kazupon san, i found in dev mode, my app has more memory by `PerformanceMeasure` type. performance invoked frequently by this code:...
### Reporting a bug? When `locale` is specified as the first argument of `watch`, the type inference of the `watch` callback argument cannot be inferred correctly.  ### Expected behavior...
### Reporting a bug? In the official site of Vue-I18n, the search box (powered by Algolia) which is used to search the content of the whole documentation, returns lots of...
### Reporting a bug? If a child component declares i18n messages, i18n-t will not find the parent messages. It seems to stop searching in the hierarchy once it finds a...
### Reporting a bug? When calling `useI18n` from a component which is a children from a Custom Element, it throws : ``` Uncaught TypeError: Cannot read property '__VUE_I18N_SYMBOL__' of null...
**Reporting a bug?** When compiling, I am seeing these errors: ``` Starting compilation in watch mode....yarn/$$virtual/vue-i18n-virtual-8387eb67eb/0/cache/vue-i18n-npm-9.1.6-66ae7003f6-6da7c84c88.zip/node_modules/vue-i18n/dist/vue-i18n.d.ts:3:34 - error TS2307: Cannot find module '@vue/reactivity' or its corresponding type declarations. 3 import...
**Module versions (please complete the following information):** - `vue`: 3.1.1 - `vue-i18n`: 9.1.6 **Reproduction Link** https://codesandbox.io/s/vue-i18n-9-number-formatting-bug-vdfox?file=/index.html **To Reproduce** Steps to reproduce the behavior: ex: 1. Go to https://codesandbox.io/s/vue-i18n-9-number-formatting-bug-vdfox?file=/index.html 2. See...
Currently, if I look up this key: `$t('mainMenu.buttonStart')` The key is only found if I use a nested json: ``` { "mainMenu": { "buttonStart": "Start!" } } ``` But not...