chore: make app root attribute consistent with scopeId attributes

This commit is contained in:
Evan You 2020-07-21 14:56:28 -04:00
parent c852bf18d7
commit a28a11ef22

View File

@ -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
}