Vue+Electron 获取文件目录:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年2月19日 (星期一)

  • 当前之前 09:042024年2月19日 (一) 09:04BrainBs 讨论 贡献 525字节 +525 创建页面,内容为“ <pre class="vue">const selectedFolder = ref(''); function handleFile(event){ const fileInput = event.target; const file = fileInput.files[0]; var filePath=""; var filePath_sep=file.path.split("\\"); for(let i=0;i<filePath_sep.length-1;i++){ filePath+=filePath_sep[i]+"\\"; } selectedFolder.value = filePath; emit('setD', selectedFolder); } function SelectBasedir(event){ document.…”