chore: remove todos
This commit is contained in:
parent
42dce36bf1
commit
9595446291
@ -1,15 +1,3 @@
|
|||||||
// TODO:
|
|
||||||
// - refs
|
|
||||||
// - slots
|
|
||||||
// - keep alive
|
|
||||||
// - app context
|
|
||||||
// - svg
|
|
||||||
// - hydration
|
|
||||||
// - error handling
|
|
||||||
// - warning context
|
|
||||||
// - parent chain
|
|
||||||
// - reused nodes (warning)
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Text,
|
Text,
|
||||||
Fragment,
|
Fragment,
|
||||||
@ -19,16 +7,16 @@ import {
|
|||||||
VNode,
|
VNode,
|
||||||
VNodeChildren
|
VNodeChildren
|
||||||
} from './vnode'
|
} from './vnode'
|
||||||
import { isString, isArray, EMPTY_OBJ, EMPTY_ARR } from '@vue/shared'
|
|
||||||
import { TEXT, CLASS, STYLE, PROPS, KEYED, UNKEYED } from './patchFlags'
|
|
||||||
import { effect, stop } from '@vue/observer'
|
|
||||||
import {
|
import {
|
||||||
ComponentInstance,
|
ComponentInstance,
|
||||||
renderComponentRoot,
|
renderComponentRoot,
|
||||||
shouldUpdateComponent,
|
shouldUpdateComponent,
|
||||||
createComponentInstance
|
createComponentInstance
|
||||||
} from './component'
|
} from './component'
|
||||||
|
import { isString, isArray, EMPTY_OBJ, EMPTY_ARR } from '@vue/shared'
|
||||||
|
import { TEXT, CLASS, STYLE, PROPS, KEYED, UNKEYED } from './patchFlags'
|
||||||
import { queueJob, queuePostFlushCb, flushPostFlushCbs } from './scheduler'
|
import { queueJob, queuePostFlushCb, flushPostFlushCbs } from './scheduler'
|
||||||
|
import { effect, stop } from '@vue/observer'
|
||||||
|
|
||||||
function isSameType(n1: VNode, n2: VNode): boolean {
|
function isSameType(n1: VNode, n2: VNode): boolean {
|
||||||
return n1.type === n2.type && n1.key === n2.key
|
return n1.type === n2.type && n1.key === n2.key
|
||||||
|
Loading…
x
Reference in New Issue
Block a user