From 62e39b2991958cc040ba5aa9db0345b34ed3dc1c Mon Sep 17 00:00:00 2001 From: Daniel Kehlibarov Date: Tue, 6 Nov 2018 16:53:04 +0200 Subject: [PATCH] Update app-prefetch-feature.md Add a note regarding Quasar Loading in preFetch hook behavior in SSR mode. --- source/guide/app-prefetch-feature.md | 1 + 1 file changed, 1 insertion(+) diff --git a/source/guide/app-prefetch-feature.md b/source/guide/app-prefetch-feature.md index a02d684a..3b472c98 100644 --- a/source/guide/app-prefetch-feature.md +++ b/source/guide/app-prefetch-feature.md @@ -230,3 +230,4 @@ export default { } } ``` +> Please note that the above example would not work in SSR mode due to the nature of SS, i.e. a spinner would not be shown. The page content for a Vue route component is prerendered on the **server** while Quasar Loading is a client-side UI component.