-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Guide
Some tools are required for developing with Vue Admin. You will need:
- Nodejs v5.x
- NPM v3.x
- Git
Nodejs and NPM are available here: Nodejs.org version 5.x
Git is available here:
There are several approaches.
-
Clone the source code with Git:
Execute
git clone [email protected]:vue-bulma/vue-admin.git
in your GitBash or command line. -
Download the zip file from browser:
Visit Vue Admin Download
After you got repository, change work directory and install dependencies by executing following commands in Git Bash:
cd vue-admin
npm install
There are several commands you can use for running Vue Admin locally in different environment.
npm run dev
will open your default browser and run project in develop mode. You will be able to make your changes
npm run build
will package your source code into/dist
directory for production deployment.