From 76c2cbbeb25fd48e5b20147324a65993e55987a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?sea=20/=20=E7=A5=9E=E7=A7=98=E6=B5=B7?= <45450994+warmthsea@users.noreply.github.com> Date: Wed, 24 Apr 2024 17:47:53 +0800 Subject: [PATCH] docs(components): [table-v2] fix dynamic-height examples error (#16635) docs: fix dynamic-height examples error --- docs/examples/table-v2/dynamic-height.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/table-v2/dynamic-height.vue b/docs/examples/table-v2/dynamic-height.vue index b066673ec1..a603e24508 100644 --- a/docs/examples/table-v2/dynamic-height.vue +++ b/docs/examples/table-v2/dynamic-height.vue @@ -34,7 +34,7 @@ const textList = [shortText, midText, longText] let id = 0 const dataGenerator = () => ({ - id: `random:${++id}`, + id: `random-${++id}`, name: 'Tom', date: '2016-05-03', description: textList[Math.floor(Math.random() * 3)],