From b00a13011436182aa1d24bac138405a550ba3c8f Mon Sep 17 00:00:00 2001 From: xiaomai Date: Tue, 14 Oct 2025 23:07:11 +0800 Subject: [PATCH] feat(table): enhance item table with sticky header and improved search This commit introduces two key improvements to the items table. A sticky header and max-height are added for better usability on long lists. The global search is enhanced to allow filtering by brand and tags. This is achieved by adding a hidden column for the brand and using an accessorFn to convert the tags array into a searchable string. --- app/pages/index.vue | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/app/pages/index.vue b/app/pages/index.vue index f07dc6a..c986753 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -48,9 +48,11 @@