From 991d5f70ea3aa953083d9f22dfbff35d369f80a4 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sat, 7 Oct 2017 13:19:30 +0330 Subject: [PATCH] fix: add __nuxt id --- lib/app/App.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/app/App.vue b/lib/app/App.vue index 0c00e2678b..54b5251da8 100644 --- a/lib/app/App.vue +++ b/lib/app/App.vue @@ -31,7 +31,11 @@ export default { } }, [ layoutEl ]) - return h('div', [ + return h('div',{ + domProps: { + id: '__nuxt' + } + }, [ <% if (loading) { %>loadingEl,<% } %> transitionEl ])