feat:优化模块安装,提供选择器

This commit is contained in:
JaguarJack
2023-07-25 10:36:16 +08:00
parent d5ed1dd461
commit 19fd75d171
5 changed files with 254 additions and 2 deletions

View File

@@ -41,7 +41,7 @@
<!-- 安装 -->
<Dialog v-model="installVisible" title="安装模块" destroy-on-close>
<Install />
<Install @close="closeInstall" />
</Dialog>
</div>
</template>
@@ -62,6 +62,9 @@ const { open, close, title, visible, id } = useOpen()
const tableData = computed(() => data.value?.data)
const installVisible = ref<boolean>(false)
const closeInstall = () => {
installVisible.value = false
}
onMounted(() => {
search()