From: Evan You Date: Fri, 7 Feb 2020 22:18:12 +0000 (-0500) Subject: fix(runtime-core): fix ShapeFlags tree shaking X-Git-Tag: v3.0.0-alpha.5~77 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f67aa7da50d6ffc543754a42f1e677af11f9173;p=thirdparty%2Fvuejs%2Fcore.git fix(runtime-core): fix ShapeFlags tree shaking --- diff --git a/packages/runtime-core/src/component.ts b/packages/runtime-core/src/component.ts index 889c45d39b..a615e8fad9 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 }