Results 3 issues of Evan Ma

## Why el支持传方法,根据其他字段的值来动态设置props属性 ## How Describe your steps: 1. one step 2. two step... You may use xmind or other mind map to show you logic ## Test ![WX20220901-183018@2x](https://user-images.githubusercontent.com/15722142/187894307-299fd27b-7b9b-4696-81b2-9a3fde708d44.png) ##...

## Why type=group下子元素的change等事件中无法正确拿到updateForm方法 ## How Describe your steps: [ { type: 'group', items: [ { label: 'test', id: 'test', type: 'input', on: { change: (e, updateForm) => {} } }...

carousel组件在计算宽高度的时候使用的是offsetWidth和offsetHeight,计算出来的只会是整数,但在有些情况下实际的宽度和高度会存在小数,例如在使用rem等为单位的情况下,误差零点几px的情况在chrome浏览器下(其他浏览器未进行测试)会导致当前页面展示了部分下一个非激活carousel-item的部分内容,比如carousel-item内元素的的最左侧存在border,会在当前active的carosuel-item的最右侧出现下一个非激活carousel-item的border,情况出现在使用offsetWidth计算出的宽度小于实际宽度的时候,也就是说比如当实际宽度是800.44而offsetWidth得到的值是800的时候会出现问题,而实际宽度是800.97offsetWidth得到的值是801的时候不会出现上述问题