File tree 1 file changed +4
-4
lines changed
packages/runtime-core/src
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import {
20
20
Component
21
21
} from './component'
22
22
import { RawSlots } from './componentSlots'
23
- import { isProxy , Ref , toRaw } from '@vue/reactivity'
23
+ import { isProxy , Ref , toRaw , ReactiveFlags } from '@vue/reactivity'
24
24
import { AppContext } from './apiCreateApp'
25
25
import {
26
26
SuspenseImpl ,
@@ -118,7 +118,7 @@ export interface VNode<
118
118
/**
119
119
* @internal
120
120
*/
121
- __v_skip : true
121
+ [ ReactiveFlags . SKIP ] : true
122
122
type : VNodeTypes
123
123
props : ( VNodeProps & ExtraProps ) | null
124
124
key : string | number | null
@@ -375,7 +375,7 @@ function _createVNode(
375
375
376
376
const vnode : VNode = {
377
377
__v_isVNode : true ,
378
- __v_skip : true ,
378
+ [ ReactiveFlags . SKIP ] : true ,
379
379
type,
380
380
props,
381
381
key : props && normalizeKey ( props ) ,
@@ -440,7 +440,7 @@ export function cloneVNode<T, U>(
440
440
: props
441
441
return {
442
442
__v_isVNode : true ,
443
- __v_skip : true ,
443
+ [ ReactiveFlags . SKIP ] : true ,
444
444
type : vnode . type ,
445
445
props : mergedProps ,
446
446
key : mergedProps && normalizeKey ( mergedProps ) ,
You can’t perform that action at this time.
0 commit comments