From bae31bc9a266fdde6686dc43f3175a6bc1c436da Mon Sep 17 00:00:00 2001 From: tanjinzhou <415800467@qq.com> Date: Wed, 14 Oct 2020 10:28:46 +0800 Subject: [PATCH] fix: props-util error --- components/_util/props-util/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/_util/props-util/index.js b/components/_util/props-util/index.js index df28ca8c2..21a3c10d7 100644 --- a/components/_util/props-util/index.js +++ b/components/_util/props-util/index.js @@ -1,8 +1,8 @@ import isPlainObject from 'lodash-es/isPlainObject'; -import classNames from './classNames'; +import classNames from '../classNames'; import { isVNode, Fragment, Comment, Text, h } from 'vue'; -import { camelize, hyphenate, isOn, resolvePropValue } from './util'; -import isValid from './isValid'; +import { camelize, hyphenate, isOn, resolvePropValue } from '../util'; +import isValid from '../isValid'; // function getType(fn) { // const match = fn && fn.toString().match(/^\s*function (\w+)/); // return match ? match[1] : '';