diff --git a/src/views/config/PluginConfigPage.vue b/src/views/config/PluginConfigPage.vue
index e258e8a..e53613c 100644
--- a/src/views/config/PluginConfigPage.vue
+++ b/src/views/config/PluginConfigPage.vue
@@ -1,5 +1,7 @@
@@ -137,6 +222,16 @@ getConfigs()
+
+
+
+
+
+
+
+
+
diff --git a/src/views/dashboards/default/DefaultDashboard.vue b/src/views/dashboards/default/DefaultDashboard.vue
index f43d371..1b545c4 100644
--- a/src/views/dashboards/default/DefaultDashboard.vue
+++ b/src/views/dashboards/default/DefaultDashboard.vue
@@ -78,13 +78,15 @@ const load = async () => {
},
}
// 加载远程组件
- widgets.value.push({
- plugin: widget.plugin,
- file: widget.file,
- data: widget.data,
- col: widget.data?.col || 4,
- remote: defineAsyncComponent(() => loadModule(widget.file, options))
- })
+ if (!widget.disabledHome) {
+ widgets.value.push({
+ plugin: widget.plugin,
+ file: widget.file,
+ data: widget.data,
+ col: widget.data?.col || 4,
+ remote: defineAsyncComponent(() => loadModule(widget.file, options))
+ })
+ }
}
}
})
@@ -98,8 +100,8 @@ const load = async () => {
-
+