[Vuejs]-Drag and drop file electron/vue.js

5👍

The will-navigate event is designed to catch/parse dropped files in electron. So it is not a vue.js specific issue.

This snippet will prevent the render process from loading the image as content.

mainWindow.webContents.on('will-navigate', (event) => event.preventDefault());

Leave a comment