Open fantasy9830 opened 6 years ago
请问你的可以在本地运行源代码,这位大哥
import { Cascader, Table } from 'element-react';
class Test extends React.Component {
constructor(props) {
super(props);
this.state = {
list: [],
columns: [
{
label: 'test1',
prop: 'test1',
sortable: true,
},
{
label: 'test2',
prop: 'test2',
sortable: true,
},
],
options: [
{
value: 'aaa',
label: 'aaa',
},
{
value: 'bbb',
label: 'bbb',
},
{
value: 'ccc',
label: 'ccc',
},
],
};
}
render() {
return (
<div style={{ width: '200px'}}>
<Cascader
options={this.state.options}
/>
<Table columns={this.state.columns} data={this.props.list} border />
</div>
);
}
}
export default Test;
我的意思是运行源代码,不是你使用它,就是我从git上clone下来开源项目的源代码,你可以在本地跑起来吗
可以
方便的话加下我QQ1194552431,我运行的时候一直报错,我想运行起来看看源代码,希望加QQ沟通下
@fantasy9830 这个因为有些元素的z-index
并不是计算出来的, 而是写死的静态值, 暂时可以通过覆盖style的方式hack一下.
Description
使用Cascader展开后会被caret-wrapper覆盖到
Additional Information