mirror of https://github.com/vuejs/core.git
chore: use '' instead of undefined (#205)
This commit is contained in:
parent
14aabf0f98
commit
e68321eac0
|
|
@ -3,7 +3,7 @@ import { OperationTypes } from './operations'
|
|||
import { isObject } from '@vue/shared'
|
||||
import { reactive } from './reactive'
|
||||
|
||||
export const refSymbol = Symbol(__DEV__ ? 'refSymbol' : undefined)
|
||||
export const refSymbol = Symbol(__DEV__ ? 'refSymbol' : '')
|
||||
|
||||
export interface Ref<T = any> {
|
||||
[refSymbol]: true
|
||||
|
|
|
|||
Loading…
Reference in New Issue