* @description Get all inputpath from inputpathMap * @returns inputpathMap with string
()
| 47 | * @returns inputpathMap with string |
| 48 | */ |
| 49 | static getAllPath(): string { |
| 50 | const { inputpathMap } = storeToRefs(useIOPathStore()) |
| 51 | // return inputpath key and value with string |
| 52 | let inputpath = '' |
| 53 | inputpathMap.value.forEach((value, key) => { |
| 54 | inputpath += `${key} : ${value}\n` |
| 55 | }) |
| 56 | return inputpath |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * @description Get all inputpath from inputpathMap |