You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 12, 2020. It is now read-only.
Making i18n specs more maintainable. Covering additional use case. (#366)
* chore: refactor i18n to demonstrate i18n loader vs json-only loader. Generate tests and source
feat: allow options when using extensions in tests (#342)
```js
const use = [
MyPlugin, // this plugin does not need options
[MyPluginWithOptions, { label: 'testing' }], // this plugin needs options
]
// extend Vue with plugins
const extensions = {
use,
}
mount({}, { extensions })
```