We've already looked at how to use Electron applications with the Angular and React frameworks. Now, it's time to look at another popular framework: Vue.js. This framework will help you boost your productivity when building desktop applications with web technologies.
Similar to the Angular CLI and Create React App, Vue.js has its own CLI tool too. You can install it and generate a new application called integrate-vue by following these steps:
- Run the following two commands:
npm install -g @vue/clivue create integrate-vue
- The tool is going ...