From a6622eb3555f3bbbda272b64b50dbad9e6aa128a Mon Sep 17 00:00:00 2001 From: Amon Caldas Date: Thu, 29 Jul 2021 17:52:52 +0200 Subject: [PATCH] feat(hooks-example.js): remove hook priority from appLoaded example --- src/config-examples/hooks-example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config-examples/hooks-example.js b/src/config-examples/hooks-example.js index 63e20247..2e9f3f80 100644 --- a/src/config-examples/hooks-example.js +++ b/src/config-examples/hooks-example.js @@ -22,7 +22,7 @@ appHooks.add('appLoaded', (vueInstance) => { const pluginExample = new PluginExample(vueInstance) appHooks.attachPlugin(pluginExample, vueInstance) // Do something when the app is loaded -}, 1) +}) // #### INDIVIDUAL HOOKS DEFINITION ###