We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ex: 2.5.17, 8.2.1
Implement the missing function like this:
missing
missing: function (loc: Locale, key: Path, vm?: Vue) { console.log(loc, key, vm); }
The vm argument should be populated.
The vm argument is not populated.
I believe the bug is here: https://github.com/kazupon/vue-i18n/blob/dev/src/index.js On line 358: return this._root.t(key, ...values) It doesn't include the host parameter (which is supposed to get mapped to the vm argument in my function.
return this._root.t(key, ...values)
vm
The text was updated successfully, but these errors were encountered:
dc48099
@kazupon this fix was released to v8.3.0 right? If so, I updated the package and this bug is still there.
Sorry, something went wrong.
No branches or pull requests
vue & vue-i18n version
ex: 2.5.17, 8.2.1
Steps to reproduce
Implement the
missing
function like this:What is Expected?
The vm argument should be populated.
What is actually happening?
The vm argument is not populated.
I believe the bug is here:
https://github.com/kazupon/vue-i18n/blob/dev/src/index.js
On line 358:
return this._root.t(key, ...values)
It doesn't include the host parameter (which is supposed to get mapped to the
vm
argument in my function.The text was updated successfully, but these errors were encountered: