From 9c95fe889ec1d4ba1741e656cd6bdf4a83dd2c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=8B=A4=E6=B0=91?= Date: Thu, 22 Aug 2024 18:23:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E5=BA=94=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/app/AppHomeView.vue | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/views/app/AppHomeView.vue b/src/views/app/AppHomeView.vue index 9744e5d..f43aa0c 100644 --- a/src/views/app/AppHomeView.vue +++ b/src/views/app/AppHomeView.vue @@ -21,10 +21,16 @@ const appCreate = () => { } const name = ref(undefined) const showDialog = ref(false) +const detail = ref(undefined) +const showDetailsDialog = ref(false) const addApp = () => { name.value = undefined showDialog.value = true } +const showApp = (scope) => { + detail.value = undefined + // showDetailsDialog.value = true +} init() @@ -37,6 +43,12 @@ init() + + + @@ -55,6 +67,21 @@ init() + + + +