Browse Source

fix(runtime-core): fix ShapeFlags tree shaking

Evan You 6 years ago
parent
commit
0f67aa7da5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/runtime-core/src/component.ts

+ 1 - 1
packages/runtime-core/src/component.ts

@@ -34,7 +34,7 @@ import {
   currentRenderingInstance,
   markAttrsAccessed
 } from './componentRenderUtils'
-import { ShapeFlags } from '.'
+import { ShapeFlags } from './shapeFlags'
 
 export type Data = { [key: string]: unknown }