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
rancher/dashboard#10801 deprecates the existing method for installing the i18n plugin.
Where we would originally load the plugin via import:
// The plugin implicitly installs the plugin and extends Vue via the import import '@shell/plugins/i18n';
We now explicitly install the plugin via Vue.use():
Vue.use()
import i18n from '@shell/plugins/i18n'; // The plugin is explicitly loaded by the consumer, providing a Vue instance Vue.use(i18n);
The text was updated successfully, but these errors were encountered:
jordojordo
Successfully merging a pull request may close this issue.
rancher/dashboard#10801 deprecates the existing method for installing the i18n plugin.
Where we would originally load the plugin via import:
We now explicitly install the plugin via
Vue.use()
:The text was updated successfully, but these errors were encountered: