From bdf9f8c33a7444c924edbafa12e80aecd409ee96 Mon Sep 17 00:00:00 2001 From: Evan You Date: Wed, 13 Apr 2016 18:16:50 -0400 Subject: [PATCH] tweak --- src/runtime/vdom/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/vdom/index.js b/src/runtime/vdom/index.js index 67872dd43..8a79b037f 100644 --- a/src/runtime/vdom/index.js +++ b/src/runtime/vdom/index.js @@ -6,14 +6,14 @@ import createPatchFunction from './patch' import h from './h' -import _class from './modules/class' +import classes from './modules/class' import style from './modules/style' import props from './modules/props' import attrs from './modules/attrs' import events from './modules/events' const patch = createPatchFunction([ - _class, + classes, props, attrs, style,