-
Notifications
You must be signed in to change notification settings - Fork 14.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
table组件使用上遇到的bug #78
Comments
补充:垂直NavMenu组件的下拉交互动画效果,感觉很别扭,修改成箭头初始朝右边,点击展开朝下效果更好点。 |
table组件,可以考虑添加居中对齐的样式吗,目前默认的左对齐,对有些表格的数据展示,感觉不是那么美观,自定义父组件重写覆盖了原来的样式,希望组件默认支持该功能 |
TableColum: fix first calc columns, #78
@QingWei-Li rc.4 TableColum: fix first calc columns 这个问题依旧没有修复 |
@QingWei-Li 补充一点,我的表格数据渲染是从 vuex 里面获取的,初始渲染 获取到的 data 可能是个空数组,异步数据加载完成后会导致表格的数据重新渲染一遍,这时候页面的可视高度是不可控的,所以产生了问题一。 |
那你在 table.vue 385 行加一个 |
nice,正常了 |
@isunkui 所以Safari边框线没对齐是怎么样解决的? |
Rewrite Markdown parser & introduce Transition
Element version
1.0.0-rc.3
table组件遇到的问题:
当数据量展示的高度过多,出现竖向滚动条时,导致table表格出现横向滚动条,之前在vue-desktop中也遇到类似的问题,解决办法是data数据改变后,重新计算一遍calcColumns。
带border属性的table在safari浏览器中,边框线没对齐
建议:table组件能否添加一个子组件用于设置,当表格数据为0时,自定义展示数据为空的默认样式;目前自定义为空的组件必须放于table父组件外才能实现,当设置了height属性时,就会导致
user-table-null
组件显示在最底下,必须动态判断设置height属性,使用上感觉很别扭.The text was updated successfully, but these errors were encountered: