适配超级面板

This commit is contained in:
muwoo
2021-12-09 20:36:33 +08:00
parent b3a00c88ad
commit 1ee379b288
10 changed files with 35 additions and 9 deletions

View File

@@ -21,6 +21,7 @@
<script setup>
import { reactive, ref } from "vue";
import { message } from "ant-design-vue";
const formRef = ref();
const formState = reactive({
@@ -45,6 +46,7 @@ const downloadPlugin = async (pluginName) => {
name: pluginName,
isDev: true,
});
message.success(`${pluginName}安装成功!`);
loading.value = false;
};