Commit 7a07b703 authored by vben's avatar vben

fix(table): table memory overflow

parent 17ecaea9
......@@ -131,7 +131,8 @@ export function useColumns(
const getViewColumns = computed(() => {
const viewColumns = sortFixedColumn(unref(getColumnsRef));
viewColumns.forEach((column) => {
const columns = cloneDeep(viewColumns);
columns.forEach((column) => {
const { slots, dataIndex, customRender, format, edit, editRow, flag } = column;
if (!slots || !slots?.title) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment