chore: use '' instead of undefined (#205)

This commit is contained in:
Chester 2019-10-12 10:04:33 +08:00 committed by Evan You
parent 14aabf0f98
commit e68321eac0

View File

@ -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