From: Evan You Date: Sat, 1 Jun 2019 09:44:06 +0000 (+0800) Subject: chore: remove unused var X-Git-Tag: v3.0.0-alpha.0~961 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee5503b260bbfbd485a23d791651ff5e7876dbc0;p=thirdparty%2Fvuejs%2Fcore.git chore: remove unused var --- diff --git a/packages/runtime-core/src/vnode.ts b/packages/runtime-core/src/vnode.ts index ff4ea11675..5f78aa5959 100644 --- a/packages/runtime-core/src/vnode.ts +++ b/packages/runtime-core/src/vnode.ts @@ -2,7 +2,7 @@ import { isArray, isFunction, isString, isObject, EMPTY_ARR } from '@vue/shared' import { ComponentInstance } from './component' import { HostNode } from './createRenderer' import { RawSlots } from './componentSlots' -import { CLASS, STYLE } from './patchFlags' +import { CLASS } from './patchFlags' export const Fragment = Symbol('Fragment') export const Text = Symbol('Text')