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/README.md +2 -2
- package/dist/eleva.cjs.js +2 -2
- package/dist/eleva.cjs.js.map +1 -1
- package/dist/eleva.esm.js +2 -2
- package/dist/eleva.esm.js.map +1 -1
- package/dist/eleva.umd.js +2 -2
- package/dist/eleva.umd.js.map +1 -1
- package/dist/eleva.umd.min.js +2 -2
- package/dist/eleva.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/core/Eleva.js +1 -1
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
|
}
|