From 0f67aa7da50d6ffc543754a42f1e677af11f9173 Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 7 Feb 2020 17:18:12 -0500 Subject: [PATCH] fix(runtime-core): fix ShapeFlags tree shaking --- packages/runtime-core/src/component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 889c45d39be..a615e8fad9d 100644 --- a/packages/runtime-core/src/component.ts +++ b/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 }