feat(card-info): 修改模块名称为 info

将 card-info 组件中的 module 属性从 'rule' 修改为 'info',以更准确地反映该模块的功能和用途。
This commit is contained in:
danial
2025-02-09 22:46:06 +08:00
parent a6d6760300
commit 9b228e725a

View File

@@ -19,6 +19,6 @@ import { reactive } from 'vue';
import cardInfo from './card-info.vue';
import cardInfoHistory from './card-info-history.vue';
const state = reactive({
module: 'rule'
module: 'info'
});
</script>