为 ForkSubscribeDialog 组件添加用户关注功能,并在 DashboardRender 组件中实现组件重渲染

This commit is contained in:
jxxghp
2025-01-22 13:19:09 +08:00
parent 256e8d0452
commit 6b4383643f
2 changed files with 87 additions and 3 deletions

View File

@@ -6,6 +6,12 @@ import { type PropType } from 'vue'
const elementProps = defineProps({
config: Object as PropType<RenderProps>,
})
// key
const componentKey = ref(0)
onActivated(() => {
componentKey.value++
})
</script>
<template>
@@ -23,6 +29,7 @@ const elementProps = defineProps({
/>
</Component>
<Component
:key="componentKey"
:is="elementProps.config?.component"
v-if="elementProps.config?.html"
v-bind="elementProps.config?.props"