cy-element-ui 1.0.73 → 1.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/element-ui.common.js +8 -8
- package/lib/form-item.js +2 -2
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/form/src/form-item.vue +3 -3
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
</template>
|
|
41
41
|
<script>
|
|
42
42
|
import AsyncValidator from 'async-validator';
|
|
43
|
-
import emitter from '
|
|
44
|
-
import objectAssign from '
|
|
45
|
-
import { noop, getPropByPath } from '
|
|
43
|
+
import emitter from '../../../src/mixins/emitter';
|
|
44
|
+
import objectAssign from '../../../src/utils/merge';
|
|
45
|
+
import { noop, getPropByPath } from '../../../src/utils/util';
|
|
46
46
|
import LabelWrap from './label-wrap';
|
|
47
47
|
export default {
|
|
48
48
|
name: 'ElFormItem',
|