This repository was archived by the owner on Dec 31, 2024. It is now read-only.
v6.0.0-alpha.1
Pre-release
Pre-release
v6.0.0-alpha.1 (2017-02-23)
This is the first release of 6.0.
In this version, have some big breaking changes.
- Recommended for: experiments, prototypes, upgrading small, non-critical apps
- NOT recommended for: production use, upgrading production apps
In the examples, please refer to this examples directory.
Improvements
the below server-side rendering demo animation-gif:

API
Global Config
- Vue.config.lang DEPRECATED, use VueI18n constructor
localeoption, or VueI18n#locale - Vue.config.fallbackLang DEPRECATED, use VueI18n constructor
fallbackLocaleoption, or VueI18n#fallbackLocale - Vue.config.missingHandler DEPRECATED, use VueI18n constructor
missingoption, or VueI18n#missing - Vue.config.i18nFormatter DEPRECATED, use VueI18n constructor
formatteroption, or VueI18n#formatter
Global Method
- Vue.locale DEPRECATED, use VueI18n constructor
messagesoption, or VueI18n#messages - Vue.t DEPRECATED, use VueI18n#t
- Vue.tc DEPRECATED, use VueI18n#tc
- Vue.te DEPRECATED, use VueI18n#te
Constructor Options
- locales DEPRECATED, use
messagesofi18noption (e.g{ i18n: { messaes: ... } })
Instance Properties
- $lang DEPRECATED, use
localeof Vue instance property$i18n(e.gvm.$i18n.locale = 'en')
VueI18n class NEW
- constructor options: See the
I18nOptionstype of flowtype. - methods / properties: See the
I18ninterface definition of flowtype.