* @description Get an inputpath from inputpathMap by id * @param id inputpath id
(id: string)
| 38 | * @param id inputpath id |
| 39 | */ |
| 40 | static getByID(id: string): string { |
| 41 | const { inputpathMap } = storeToRefs(useIOPathStore()) |
| 42 | return inputpathMap.value.get(id) || '' |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * @description Get all inputpath from inputpathMap |