[Vuejs]-Vue html-tag not rendering in electron

0๐Ÿ‘

โœ…

So I came up with the solution by myself. If in app/main.js I replace

components: { App }

with

render: h => h(App)

it works.

If someone knows why please let me know.

Leave a comment