We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f3b3e commit a6dd5a7Copy full SHA for a6dd5a7
app/app.vue
@@ -202,6 +202,9 @@ export default {
202
document.write(html)
203
document.close()
204
205
+ // Destroy app
206
+ window._nuxtLoadingScreen.$destroy()
207
+
208
// Clear console
209
this.clearConsole()
210
}
app/index.js
@@ -1,4 +1,8 @@
1
import Vue from 'vue'
2
import App from './app.vue'
3
4
-window.app = new Vue(App)
+if (window._nuxtLoadingScreen) {
5
+ location.reload(true) // Workaround
6
+} else {
7
+ window._nuxtLoadingScreen = new Vue(App)
8
+}
0 commit comments