diff --git a/src/views/Plugins/PluginDetail.vue b/src/views/Plugins/PluginDetail.vue index f5a50306e..e76b8aa46 100644 --- a/src/views/Plugins/PluginDetail.vue +++ b/src/views/Plugins/PluginDetail.vue @@ -44,6 +44,7 @@ :plugin-name="pluginName" :plugin-version="pluginVersion" :plugin-with-config="pluginWithConfig" + :is-detail-loading="isDetailLoading" /> diff --git a/src/views/Plugins/components/PluginManage.vue b/src/views/Plugins/components/PluginManage.vue index f3b379e8b..9f8ce8b98 100644 --- a/src/views/Plugins/components/PluginManage.vue +++ b/src/views/Plugins/components/PluginManage.vue @@ -1,16 +1,22 @@ @@ -30,6 +36,11 @@ const props = defineProps({ }, pluginWithConfig: { type: Boolean, + default: false, + }, + isDetailLoading: { + type: Boolean, + default: false, }, })