Skip to content
Pan Yue edited this page Dec 5, 2016 · 10 revisions

Installation


Prerequisites

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:

Git for Windows

Git for Mac


Get Repository

There are several approaches.

  1. Clone the source code with Git:

    Execute git clone [email protected]:vue-bulma/vue-admin.git in your GitBash or command line.

  2. Download the zip file from browser:

    Visit Vue Admin Download


Install Dependencies

After you got repository, change work directory and install dependencies by executing following commands in Git Bash:

cd vue-admin
npm install

Run Project Locally

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.

Clone this wiki locally