From 8ff5c71e3f02658399b6b93082ee72b9e4026f79 Mon Sep 17 00:00:00 2001 From: zhangsir Date: Sat, 22 Jun 2024 20:36:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=86=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/learnPath/allPath.vue | 34 ++++++++++++++++++++++++++++++---- pages/study/index.vue | 31 ++++++++++++++++++++++++++----- 2 files changed, 56 insertions(+), 9 deletions(-) diff --git a/pages/learnPath/allPath.vue b/pages/learnPath/allPath.vue index b447d00..d00518d 100644 --- a/pages/learnPath/allPath.vue +++ b/pages/learnPath/allPath.vue @@ -21,8 +21,12 @@ 当前路径 - - + + + + {{ cell }} + + @@ -31,7 +35,11 @@ export default { data() { return { - + tableData: [ + ['Header 1', 'Header 2', 'Header 3'], + ['Row 1, Cell 1', 'Row 1, Cell 2', 'Row 1, Cell 3'], + ['Row 2, Cell 1', 'Row 2, Cell 2', 'Row 2, Cell 3'] + ] } }, onLoad() { @@ -50,8 +58,26 @@