Skip to content

Commit

Permalink
perf(CrudTable): tableTitle默认隐藏
Browse files Browse the repository at this point in the history
  • Loading branch information
BoBoooooo committed Dec 7, 2020
1 parent 30d8c1d commit 75d4f57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ npm i element-pro-crud -S
// 内部元素显示控制
{
searchForm: true, // 查询区域
tableTitle: true, // 表格标题
tableTitle: false, // 表格标题
btnAdd: true, // 添加按钮
btnDel: false, // 批量删除按钮
actionColumnBtnAdd: false, // 操作列添加按钮
Expand Down
2 changes: 1 addition & 1 deletion packages/crud-table/src/CrudTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ export default class CrudTable extends Vue {
get view() {
return {
searchForm: true,
tableTitle: true,
tableTitle: false,
btnAdd: true,
btnDel: false,
actionColumnBtnAdd: false,
Expand Down

0 comments on commit 75d4f57

Please sign in to comment.