Explorar el Código

fix(runtime-core): fix ShapeFlags tree shaking

Evan You hace 6 años
padre
commit
0f67aa7da5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 }