gpt4 book ai didi

javascript - react 拆分 Pane 无法调整大小

转载 作者:行者123 更新时间:2023-11-29 19:00:30 26 4
gpt4 key购买 nike

我刚刚安装了 react-split-pane在我的应用程序中,但它似乎不起作用。

我使用的是 react-split-pane 版本 0.1.68,但我也使用 0.1.66 和 0.1.64 对其进行了测试。

这是我的组件:

import React, { Component } from 'react';
import SplitPane from 'react-split-pane';

class Edit extends Component {
render() {
return (
<SplitPane split="vertical">
<div style={{backgroundColor: 'red'}}>LEFT</div>
<div style={{backgroundColor: 'blue'}}>RIGHT</div>
</SplitPane>
);
}
}

export default Edit;

我最终得到了一个看起来像我如何设置样式的组件,但是在元素之间拖动以调整元素宽度的大小不起作用。

enter image description here

我在这里错过了什么?

附言this issue可能与此有关,但我尝试了以前的版本,但它们似乎也不起作用。

最佳答案

我遇到了类似的问题。分隔符不起作用的原因是:缺少 CSS

从教程中添加 CSS:https://github.com/tomkp/react-split-pane#example-styling到你的 react 组件。例如:

import './edit.css';

您的拖动元素将起作用。 enter image description here

关于javascript - react 拆分 Pane 无法调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47203237/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com