refactor: move type utils to shared

This commit is contained in:
Evan You
2022-01-16 15:43:19 +08:00
parent 2e3e183b4f
commit 6cfd72e760
6 changed files with 10 additions and 8 deletions

View File

@@ -13,7 +13,8 @@ import {
NOOP,
extend,
isString,
isFunction
isFunction,
UnionToIntersection
} from '@vue/shared'
import {
toRaw,
@@ -40,7 +41,6 @@ import { Slots } from './componentSlots'
import { markAttrsAccessed } from './componentRenderUtils'
import { currentRenderingInstance } from './componentRenderContext'
import { warn } from './warning'
import { UnionToIntersection } from './helpers/typeUtils'
import { installCompatInstanceProperties } from './compat/instance'
/**