File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 1- export const MOUNT_ELEMENT_ID = 'app'
21export const MOUNT_COMPONENT_REF = 'VTU_COMPONENT'
32export 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'
2727import { createWrapper , VueWrapper } from './vueWrapper'
2828import { attachEmitListener } from './emitMixin'
2929import { 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'
3531import { stubComponents } from './stubs'
3632
3733type Slot = VNode | string | { render : Function } | Function | Component
@@ -194,7 +190,6 @@ export function mount(
194190 : { ...originalComponent }
195191
196192 const el = document . createElement ( 'div' )
197- el . id = MOUNT_ELEMENT_ID
198193
199194 if ( options ?. attachTo ) {
200195 let to : Element | null
You can’t perform that action at this time.
0 commit comments