File tree 2 files changed +1
-7
lines changed 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 1
- export const MOUNT_ELEMENT_ID = 'app'
2
1
export const MOUNT_COMPONENT_REF = 'VTU_COMPONENT'
3
2
export const MOUNT_PARENT_NAME = 'VTU_ROOT'
Original file line number Diff line number Diff line change @@ -32,11 +32,7 @@ import { processSlot } from './utils/compileSlots'
32
32
import { createWrapper , VueWrapper } from './vueWrapper'
33
33
import { attachEmitListener } from './emitMixin'
34
34
import { createDataMixin } from './dataMixin'
35
- import {
36
- MOUNT_COMPONENT_REF ,
37
- MOUNT_ELEMENT_ID ,
38
- MOUNT_PARENT_NAME
39
- } from './constants'
35
+ import { MOUNT_COMPONENT_REF , MOUNT_PARENT_NAME } from './constants'
40
36
import { stubComponents } from './stubs'
41
37
42
38
// NOTE this should come from `vue`
@@ -241,7 +237,6 @@ export function mount(
241
237
: { ...originalComponent }
242
238
243
239
const el = document . createElement ( 'div' )
244
- el . id = MOUNT_ELEMENT_ID
245
240
246
241
if ( options ?. attachTo ) {
247
242
let to : Element | null
You can’t perform that action at this time.
0 commit comments