From 509a5215f3dfbf8269f3bbfe3897e06004055814 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Mon, 18 May 2020 10:46:17 +0100 Subject: [PATCH] Update plugins on created, if host is ready --- src/components/appContent.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/appContent.vue b/src/components/appContent.vue index acf460eb..c283d22d 100644 --- a/src/components/appContent.vue +++ b/src/components/appContent.vue @@ -210,6 +210,9 @@ export default { }, created: function() { + if (this.$store.getters.ready) { + this.updatePlugins(); + } // Watch for host 'ready', then update status this.unwatchStoreFunction = this.$store.watch( (state, getters) => {