美文网首页
19 使用UI组件

19 使用UI组件

作者: skoll | 来源:发表于2022-06-08 15:30 被阅读0次

    1 .为什么这个都会触发不安全检测
    2 .这个感觉没啥必要,可以自己写的

    <SplitBox 
                    split="vertical"
                    minSize={50}
                    maxSize={100}
                    primary="first"
                >
                    <div></div>
                </SplitBox>
    

    2 .是这种用了原来的方案componentDidMount,不能用hook来操作么?.其实这个组件可以自己做的
    3 .为什么用他的一些组件,都需要重新操作css样式,简直离谱啊
    4 .比如这个,直接使用出来啥都看不到,还需要自己debug,真的拉跨,真的拉,ui还是统一使用and design

    import {Menu,Menubar} from '@antv/x6-react-components'
    import '@antv/x6-react-components/es/menu/style/index.css'
    import '@antv/x6-react-components/es/menubar/style/index.css'
    import 'antd/dist/antd.css'
    
       <div className="header">
                <Menubar>
                    <MenubarItem>
                        <Menu>
                            <MenuItem hotkey="Cmd+N">新建流程</MenuItem>
                            <MenuItem hotkey="Cmd+Shift+N">上传当前流程</MenuItem>
                            <Divider />
                        </Menu>
                    </MenubarItem>
                </Menubar>
            </div>
    

    相关文章

      网友评论

          本文标题:19 使用UI组件

          本文链接:https://www.haomeiwen.com/subject/fmeozltx.html