We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version / Branch / tag 2.0.1-beta.70.search.1
2.0.1-beta.70.search.1
出了什么问题?(What Happened?)
当只有一行数据时,配置了表头隐藏后会在表格底部出现一行空白
同时,表格上边框过粗(理应是1px)
如何复现?(How to reproduce?) 渲染如下vue组件即可看到
<template> <div class="about"> <bk-table :data="tableData" :columns="tableCols" :border="['outer', 'row']" :thead="{ isShow: false }" /> </div> </template> <script setup lang="ts"> import { ref } from 'vue'; const tableCols = ref([ { label: '行为', align: 'right', field: 'action', width: '200', index: 0, }, { label: '键', field: 'key', }, { label: '值', field: 'value', }, ]); const tableData = ref([ { action: '设置', key: 'test-test', value: 'xxx', } ]); </script>
The text was updated successfully, but these errors were encountered:
xintaoLi
No branches or pull requests
Version / Branch / tag
2.0.1-beta.70.search.1
出了什么问题?(What Happened?)
当只有一行数据时,配置了表头隐藏后会在表格底部出现一行空白
同时,表格上边框过粗(理应是1px)
如何复现?(How to reproduce?)
渲染如下vue组件即可看到
The text was updated successfully, but these errors were encountered: