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 @@ -27,11 +27,7 @@ import { processSlot } from './utils/compileSlots'
27
27
import { createWrapper , VueWrapper } from './vueWrapper'
28
28
import { attachEmitListener } from './emitMixin'
29
29
import { createDataMixin } from './dataMixin'
30
- import {
31
- MOUNT_COMPONENT_REF ,
32
- MOUNT_ELEMENT_ID ,
33
- MOUNT_PARENT_NAME
34
- } from './constants'
30
+ import { MOUNT_COMPONENT_REF , MOUNT_PARENT_NAME } from './constants'
35
31
import { stubComponents } from './stubs'
36
32
37
33
type Slot = VNode | string | { render : Function } | Function | Component
@@ -194,7 +190,6 @@ export function mount(
194
190
: { ...originalComponent }
195
191
196
192
const el = document . createElement ( 'div' )
197
- el . id = MOUNT_ELEMENT_ID
198
193
199
194
if ( options ?. attachTo ) {
200
195
let to : Element | null
You can’t perform that action at this time.
0 commit comments