From: Evan You Date: Tue, 21 Jul 2020 18:56:28 +0000 (-0400) Subject: chore: make app root attribute consistent with scopeId attributes X-Git-Tag: v3.0.0-rc.3~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a28a11ef2292bcb821a6dbb8684c7426b00c820f;p=thirdparty%2Fvuejs%2Fcore.git chore: make app root attribute consistent with scopeId attributes --- diff --git a/packages/runtime-dom/src/index.ts b/packages/runtime-dom/src/index.ts index 03dda729c5..5da7086f8e 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 }