From a28a11ef2292bcb821a6dbb8684c7426b00c820f Mon Sep 17 00:00:00 2001 From: Evan You Date: Tue, 21 Jul 2020 14:56:28 -0400 Subject: [PATCH] chore: make app root attribute consistent with scopeId attributes --- packages/runtime-dom/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-dom/src/index.ts b/packages/runtime-dom/src/index.ts index 03dda729c50..5da7086f8e6 100644 --- a/packages/runtime-dom/src/index.ts +++ b/packages/runtime-dom/src/index.ts @@ -69,7 +69,7 @@ export const createApp = ((...args) => { container.innerHTML = '' const proxy = mount(container) container.removeAttribute('v-cloak') - container.setAttribute('data-vue-app', '') + container.setAttribute('data-v-app', '') return proxy }