Vue project boilerplate for enterprise scale applications using Vue Starter.
# 1. Clone the repository.
git clone git@github.com:getamas/vue-boilerplate.git my-new-project
# 2. Enter your newly-cloned folder.
cd my-new-project
# 3. Install dependencies, make sure you are using the correct node version.
npm install
# 4. Launch dev server, compiles and hot reloads for development.
npm run serveThis project includes generators to speed up common development tasks. Commands include:
# Generate a new component with adjacent unit test
npm run new component
# Generate a new view component with adjacent unit test
npm run new view
# Generate a new layout component with adjacent unit test
npm run new layout
# Generate a new Vuex module with adjacent unit test
npm run new module