eleva 1.0.0-rc.2 → 1.0.0-rc.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/core/Eleva.js CHANGED
@@ -160,8 +160,8 @@ export class Eleva {
160
160
  * app.use(myPlugin, { option1: "value1" });
161
161
  */
162
162
  use(plugin, options = {}) {
163
- plugin.install(this, options);
164
163
  this._plugins.set(plugin.name, plugin);
164
+ plugin.install(this, options);
165
165
 
166
166
  return this;
167
167
  }