refactor: rename/re-organize files

This commit is contained in:
Evan You
2019-11-02 12:18:35 -04:00
parent abdaf10d88
commit 90b9884eb4
12 changed files with 34 additions and 33 deletions

View File

@@ -16,9 +16,9 @@ import { RawSlots } from './componentSlots'
import { ShapeFlags } from './shapeFlags'
import { isReactive, Ref } from '@vue/reactivity'
import { AppContext } from './apiApp'
import { SuspenseBoundary } from './suspense'
import { SuspenseBoundary } from './rendererSuspense'
import { DirectiveBinding } from './directives'
import { SuspenseImpl } from './suspense'
import { Suspense as SuspenseImpl } from './rendererSuspense'
export const Fragment = (Symbol(__DEV__ ? 'Fragment' : undefined) as any) as {
// type differentiator for h()
@@ -48,7 +48,7 @@ export type VNodeTypes =
| typeof Portal
| typeof Text
| typeof Comment
| typeof SuspenseImpl
| typeof Suspense
export interface VNodeProps {
[key: string]: any