feat: frontend add virtual matrix key

This commit is contained in:
2025-05-20 17:09:57 +08:00
parent b68d8eaf11
commit bea1c7e5ae
15 changed files with 689 additions and 106 deletions

View File

@@ -23,7 +23,7 @@ import { toNumber } from "lodash";
// 主板特有属性
export interface MotherBoardProps {
size?: number;
size: number;
boardAddr?: string;
boardPort?: string;
componentId?: string;
@@ -63,7 +63,6 @@ export function getDefaultProps(): MotherBoardProps {
size: 1,
boardAddr: "127.0.0.1",
boardPort: "1234",
componentId: "DefaultMotherBoardID",
};
}
</script>