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
src
files into the new scaffold'ssrc
directory - Copy over
package.json
dependencies from current project to the new scaffold'spackage.json
- Install dependencies with
yarn
ornpm install
- Run project in development mode (
yarn run dev
ornpm 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.