Migration Guide
The following documentation attempts to explain how migrating your project should be accomplished, but may not be a full proof method as overall project structure is always up for change.
- Scaffold a fresh version of electron-vue using
vue init simulatedgreg/electron-vue my-project - Copy over current project
srcfiles into the new scaffold'ssrcdirectory - Copy over
package.jsondependencies from current project to the new scaffold'spackage.json - Install dependencies with
yarnornpm install - Run project in development mode (
yarn run devornpm run dev) - Watch console for errors to fix
Just as previously mentioned above, there isn't a full proof method for migrating to a new scaffold, but these are typically going to be the major steps to get you nearly all the way there. Any personal modifications to project structure or handling of assets will be up to you or your team to migrate. Make sure to check out the rest of the documentation as it will always reflect the current version of electron-vue from the master branch.