From 8831331e3d724529dea8188033465769a199d0fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Fri, 24 Mar 2017 16:52:18 +0100 Subject: [PATCH] Fix hot reloading --- lib/app/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app/client.js b/lib/app/client.js index d5fdba931b..1facab26b2 100644 --- a/lib/app/client.js +++ b/lib/app/client.js @@ -236,7 +236,7 @@ function fixPrepatch (to, ___) { } this.setLayout(layout) // hot reloading - Vue.nextTick(() => hotReloadAPI(this)) + setTimeout(() => hotReloadAPI(this), 100) }) }